Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,6 @@ import gradio as gr
|
|
2 |
from chatbot import onlineChat
|
3 |
|
4 |
|
5 |
-
demo = gr.Interface(fn=onlineChat, inputs=gr.Textbox(lines=2, placeholder="Enter your question here...", label='Question'), outputs="text"
|
6 |
demo.launch(share=True)
|
7 |
# demo.launch()
|
|
|
2 |
from chatbot import onlineChat
|
3 |
|
4 |
|
5 |
+
demo = gr.Interface(fn=onlineChat, inputs=gr.Textbox(lines=2, placeholder="Enter your question here...", label='Question'), outputs="text")
|
6 |
demo.launch(share=True)
|
7 |
# demo.launch()
|