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