gbarone77 commited on
Commit
b171847
·
1 Parent(s): 80a1529

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -19,7 +19,6 @@ def translate_to_sql(text):
19
  gradio_interface = gradio.Interface(
20
  fn = translate_to_sql,
21
  inputs=gr.Textbox(lines=1, placeholder="Example - translate to SQL: When was Olympics held in Rome? table ID: ID, city, year, cost, attendees"),
22
- outputs = "text"
23
- )
24
 
25
  gradio_interface.launch()
 
19
  gradio_interface = gradio.Interface(
20
  fn = translate_to_sql,
21
  inputs=gr.Textbox(lines=1, placeholder="Example - translate to SQL: When was Olympics held in Rome? table ID: ID, city, year, cost, attendees"),
22
+ outputs = "text")
 
23
 
24
  gradio_interface.launch()