Curranj commited on
Commit
073666c
·
1 Parent(s): d79a49f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,6 +32,6 @@ def greet( prompt):
32
 
33
 
34
  #Code to set up Gradio UI
35
- iface = gr.Interface(greet, inputs=gr.Textbox(lines=2, placeholder="SQL Query Here..."), outputs = "text",title="Natural Language to SQL")
36
  iface.launch()
37
 
 
32
 
33
 
34
  #Code to set up Gradio UI
35
+ iface = gr.Interface(greet, inputs = ["text"], outputs = "text",title="Natural Language to SQL", description="Enter any natural language prompt and get a SQL statement back")
36
  iface.launch()
37