English
Aspik101 commited on
Commit
f291ad3
·
1 Parent(s): 1a55701

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md CHANGED
@@ -61,3 +61,13 @@ def get_answer(question, model_version = model):
61
  print(sentences.split("Response:\n")[1])
62
 
63
  ```
 
 
 
 
 
 
 
 
 
 
 
61
  print(sentences.split("Response:\n")[1])
62
 
63
  ```
64
+ ### Examples
65
+
66
+
67
+ ```python
68
+ get_answer("Write a function that read csv by pandas")
69
+
70
+ Generating...
71
+ def read_csv(file):
72
+ df = pd.read_csv('data/test.csv')
73
+ ```