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()