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