cellanet/Chatbot
0
1import gradio as gr2from chatbot import onlineChat3 4 5demo = gr.Interface(fn=onlineChat, inputs=gr.Textbox(lines=2, placeholder="Enter your question here...", label='Question'), outputs="text")6demo.launch(share=True)7# demo.launch()