echo-chatbot / app.py
yeter's picture
Upload folder using huggingface_hub
b69796e
Raw
History Blame Contribute Delete
125 Bytes
import gradio as gr
def slow_echo(message, history):
return message
demo = gr.ChatInterface(slow_echo).queue().launch()