Sathvika-Alla commited on
Commit
9b791ee
·
verified ·
1 Parent(s): 46adbcf

Update chatbot-gradio.py

Browse files
Files changed (1) hide show
  1. chatbot-gradio.py +1 -1
chatbot-gradio.py CHANGED
@@ -130,7 +130,7 @@ async def handle_query(user_input: str):
130
  SQL Guidelines (if needed):
131
  1. Always use SELECT * instead of field lists
132
  2. For exact matches use: WHERE c.[field] = value
133
- 3. For ranges use: WHERE c.[field].min = X AND c.[field].max = Y
134
  4. Do not use AS and cast key names
135
 
136
  Examples:
 
130
  SQL Guidelines (if needed):
131
  1. Always use SELECT * instead of field lists
132
  2. For exact matches use: WHERE c.[field] = value
133
+ 3. For range matches always use exact checks: WHERE c.[field].min = X AND c.[field].max = Y
134
  4. Do not use AS and cast key names
135
 
136
  Examples: