avinashm commited on
Commit
0aaa86c
·
verified ·
1 Parent(s): 13d6919

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -22,7 +22,7 @@ Dataset: neo4j/text2cypher-2024v1
22
  An overview of the finetuned models and benchmarking results are shared at https://medium.com/p/d77be96ab65a and https://medium.com/p/b2203d1173b0
23
 
24
  ## Example Cypher generation
25
- <script>
26
  import openai
27
 
28
  # Define the instruction and helper functions
@@ -79,7 +79,7 @@ raw_output = response["choices"][0]["message"]["content"]
79
  output = _postprocess_output_cypher(raw_output)
80
 
81
  print(output)
82
- </script>
83
 
84
 
85
 
 
22
  An overview of the finetuned models and benchmarking results are shared at https://medium.com/p/d77be96ab65a and https://medium.com/p/b2203d1173b0
23
 
24
  ## Example Cypher generation
25
+ ```python
26
  import openai
27
 
28
  # Define the instruction and helper functions
 
79
  output = _postprocess_output_cypher(raw_output)
80
 
81
  print(output)
82
+ ```
83
 
84
 
85