chatbotgradio / app.py
fjassim's picture
Update app.py
3426d58 verified
raw
history blame contribute delete
124 Bytes
import gradio as gr
def echo(message, history):
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()