seeusoon commited on
Commit
617c0e6
·
verified ·
1 Parent(s): 67e323c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,8 +16,8 @@ def chatbot_response(input_text):
16
 
17
  iface = gr.Interface(
18
  fn=chatbot_response,
19
- inputs=gr.inputs.Textbox(lines=2, placeholder="Enter your text here..."),
20
- outputs="text",
21
  title="Korean Chatbot",
22
  description="Ask anything!"
23
  )
 
16
 
17
  iface = gr.Interface(
18
  fn=chatbot_response,
19
+ inputs=gr.Textbox(lines=2, placeholder="Enter your text here..."),
20
+ outputs=gr.Textbox(),
21
  title="Korean Chatbot",
22
  description="Ask anything!"
23
  )