firstchatbot / app.py
amburp's picture
Update app.py
eef6aee verified
raw
history blame contribute delete
119 Bytes
import gradio as gr
def echo(message, history):
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()