krishanusinha20 commited on
Commit
22c44e6
·
verified ·
1 Parent(s): 194366a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -363,11 +363,14 @@ schema_description = """
363
 
364
  iface = gr.Interface(
365
  fn=run_multi_agent_query,
366
- inputs=gr.Textbox(lines=2, placeholder="Enter your natural language query here..."),
367
  outputs="text",
368
  title="Multi-Agent SQL Generator",
369
- description="Enter a natural language query to generate and execute a SQL query. E.g."Find the email_id of the top 5 customers who spent the most in 2024." \n\n" + schema_description
 
 
370
  )
371
 
 
372
  if __name__ == "__main__":
373
  iface.launch()
 
363
 
364
  iface = gr.Interface(
365
  fn=run_multi_agent_query,
366
+ inputs=gr.Textbox(lines=2, placeholder="Enter your natural language query here.(Which products sold the most in 2024))."),
367
  outputs="text",
368
  title="Multi-Agent SQL Generator",
369
+ description=("Enter a natural language query to generate and execute a SQL query. E.g. "
370
+ "Find the email_id of the top 5 customers who spent the most in 2024.\n\n"
371
+ + schema_description)
372
  )
373
 
374
+
375
  if __name__ == "__main__":
376
  iface.launch()