Chatbot / app.py
cellanet's picture
Update app.py
0dfa613
import gradio as gr
from chatbot import onlineChat
demo = gr.Interface(fn=onlineChat, inputs=gr.Textbox(lines=2, placeholder="Enter your question here...", label='Question'), outputs="text")
demo.launch(share=True)
# demo.launch()