Update README.md
Browse files
README.md
CHANGED
@@ -58,13 +58,14 @@ Generate the SQL after thinking step by step:\n <br>
|
|
58 |
|
59 |
````python
|
60 |
def bird_gpt_template_no_format(question, commonsense, schema):
|
61 |
-
return f
|
62 |
|
63 |
-- External Knowledge: {commonsense}
|
64 |
-- Using valid SQLite and understanding External Knowledge, answer the following question for the tables provided above.
|
65 |
-- {question}
|
66 |
Generate the SQL after thinking step by step:
|
67 |
-
|
|
|
68 |
```
|
69 |
|
70 |
### Generate Schema:
|
|
|
58 |
|
59 |
````python
|
60 |
def bird_gpt_template_no_format(question, commonsense, schema):
|
61 |
+
return f"""{schema}
|
62 |
|
63 |
-- External Knowledge: {commonsense}
|
64 |
-- Using valid SQLite and understanding External Knowledge, answer the following question for the tables provided above.
|
65 |
-- {question}
|
66 |
Generate the SQL after thinking step by step:
|
67 |
+
"""
|
68 |
+
|
69 |
```
|
70 |
|
71 |
### Generate Schema:
|