Commit
·
79b0eff
1
Parent(s):
14e601f
Update README.md
Browse files
README.md
CHANGED
@@ -69,7 +69,7 @@ prompt = f"[INST] Write SQLite query to answer the following question given the
|
|
69 |
|
70 |
output = model(prompt)
|
71 |
output = output.split('```')[0]
|
72 |
-
print(output)
|
73 |
```
|
74 |
|
75 |
This code demonstrates how to utilize the model for generating SQL queries based on a provided database schema and a natural language question. It showcases the model's capability to assist in SQL query generation for text-to-SQL tasks.
|
|
|
69 |
|
70 |
output = model(prompt)
|
71 |
output = output.split('```')[0]
|
72 |
+
print(output.strip())
|
73 |
```
|
74 |
|
75 |
This code demonstrates how to utilize the model for generating SQL queries based on a provided database schema and a natural language question. It showcases the model's capability to assist in SQL query generation for text-to-SQL tasks.
|