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

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 = ["text"], outputs = "text")
36
  iface.launch()
37
 
 
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