Antoniskaraolis commited on
Commit
789c0b0
·
verified ·
1 Parent(s): fe6a6d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,7 +16,7 @@ def answer_query(question):
16
 
17
  iface = gr.Interface(
18
  fn=answer_query,
19
- inputs=gr.inputs.Textbox(label="Enter your question:"),
20
- outputs=gr.outputs.Textbox(label="Answer:")
21
  )
22
  iface.launch()
 
16
 
17
  iface = gr.Interface(
18
  fn=answer_query,
19
+ inputs=gr.Textbox(label="Enter your question:"),
20
+ outputs=gr.Textbox(label="Answer:")
21
  )
22
  iface.launch()