testingtesttest / app.py
mollysweeney's picture
Create app.py
e41764e verified
Raw
History Blame Contribute Delete
127 Bytes
import gradio as gr
def echo(message, history):
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()