codealong / app.py
magschris's picture
Create app.py
1a06080 verified
Raw
History Blame Contribute Delete
120 Bytes
import gradio as gr
def echo(message, history):
return(message)
chatbot = gr.ChatInterface(echo)
chatbot.launch()