Update README.md
Browse files
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 |
+
```
|