CoolFace
Apppublic

cellanet/Chatbot

sourceHugging Faceupdated 4y agoView on Hugging Face
0likes
app.py7 linesDownload Raw Back to root
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()