Update README.md
Browse files
README.md
CHANGED
|
@@ -31,10 +31,10 @@ Since Qwen3 models require a two-part output (`<think>` + final answer), and our
|
|
| 31 |
|
| 32 |
```
|
| 33 |
|
| 34 |
-
<|
|
| 35 |
Given the database schema and the user question, generate the corresponding SQL query.
|
| 36 |
-
<|
|
| 37 |
-
<|
|
| 38 |
|
| 39 |
\[SCHEMA]
|
| 40 |
CREATE TABLE Inclusive\_Housing (Property\_ID INT, Inclusive VARCHAR(10), Property\_Size INT);
|
|
@@ -43,13 +43,13 @@ VALUES (1, 'Yes', 900), (2, 'No', 1100), (3, 'Yes', 800), (4, 'No', 1200);
|
|
| 43 |
|
| 44 |
\[QUESTION]
|
| 45 |
What is the average property size in inclusive housing areas?
|
| 46 |
-
<|
|
| 47 |
-
<|
|
| 48 |
<think>
|
| 49 |
|
| 50 |
</think>
|
| 51 |
SELECT AVG(Property\_Size) FROM Inclusive\_Housing WHERE Inclusive = 'Yes';
|
| 52 |
-
<|
|
| 53 |
|
| 54 |
````
|
| 55 |
|
|
|
|
| 31 |
|
| 32 |
```
|
| 33 |
|
| 34 |
+
<|im_start|>system
|
| 35 |
Given the database schema and the user question, generate the corresponding SQL query.
|
| 36 |
+
<|im_end|>
|
| 37 |
+
<|im_start|>user
|
| 38 |
|
| 39 |
\[SCHEMA]
|
| 40 |
CREATE TABLE Inclusive\_Housing (Property\_ID INT, Inclusive VARCHAR(10), Property\_Size INT);
|
|
|
|
| 43 |
|
| 44 |
\[QUESTION]
|
| 45 |
What is the average property size in inclusive housing areas?
|
| 46 |
+
<|im_end|>
|
| 47 |
+
<|im_start|>assistant
|
| 48 |
<think>
|
| 49 |
|
| 50 |
</think>
|
| 51 |
SELECT AVG(Property\_Size) FROM Inclusive\_Housing WHERE Inclusive = 'Yes';
|
| 52 |
+
<|im_end|>
|
| 53 |
|
| 54 |
````
|
| 55 |
|