Joseph Weitzel commited on
Commit
ab1ba2a
1 Parent(s): 34e03e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ def chatbot(input_text, token):
30
  return response.response
31
 
32
  iface = gr.Interface(fn=chatbot,
33
- [gr.inputs.Textbox(lines=1, label="Ask Shirley"), gr.inputs.Textbox(lines=1, label="API_TOKEN")],
34
  outputs="text",
35
  title="Ask Shirley Anything")
36
 
 
30
  return response.response
31
 
32
  iface = gr.Interface(fn=chatbot,
33
+ inputs=[gr.inputs.Textbox(lines=1, label="Ask Shirley"), gr.inputs.Textbox(lines=1, label="API_TOKEN")],
34
  outputs="text",
35
  title="Ask Shirley Anything")
36