newchatbot / app.py
fjassim's picture
Created app.py
14c8a2c verified
raw
history blame contribute delete
118 Bytes
import gradio as gr
def echo(message, history):
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()