Update README.md
Browse files
README.md
CHANGED
@@ -77,8 +77,7 @@ model, tokenizer = FastLanguageModel.from_pretrained(
|
|
77 |
prompt = """ You are an text to SQL query translator.
|
78 |
Users will ask you questions in English
|
79 |
and you will generate a SQL query based on their question
|
80 |
-
SQL has to be simple
|
81 |
-
and the provided SCHEMA.
|
82 |
|
83 |
|
84 |
### User Question:
|
@@ -100,10 +99,10 @@ CREATE TABLE socially_responsible_lending (
|
|
100 |
);
|
101 |
|
102 |
INSERT INTO socially_responsible_lending VALUES
|
103 |
-
(1, '
|
104 |
-
(2, 'Jane
|
105 |
-
(3, '
|
106 |
-
(4, 'Fatima
|
107 |
"""
|
108 |
|
109 |
inputs = tokenizer(
|
|
|
77 |
prompt = """ You are an text to SQL query translator.
|
78 |
Users will ask you questions in English
|
79 |
and you will generate a SQL query based on their question
|
80 |
+
SQL has to be simple, The schema context has been provided to you.
|
|
|
81 |
|
82 |
|
83 |
### User Question:
|
|
|
99 |
);
|
100 |
|
101 |
INSERT INTO socially_responsible_lending VALUES
|
102 |
+
(1, 'james Chad', 5000),
|
103 |
+
(2, 'Jane Rajesh', 7000),
|
104 |
+
(3, 'Alia Kapoor', 6000),
|
105 |
+
(4, 'Fatima Patil', 8000);
|
106 |
"""
|
107 |
|
108 |
inputs = tokenizer(
|