echo-chatbot / app.py
tuyendragon's picture
Upload folder using huggingface_hub
e9a76de
raw
history blame contribute delete
123 Bytes
import gradio as gr
def slow_echo(message, history):
return message
demo = gr.ChatInterface(slow_echo).queue().launch()