echo-chatbot / main.py
chadlinden's picture
Upload folder using huggingface_hub
8fd238c verified
import gradio as gr
def slow_echo(message, history):
return message
demo = gr.ChatInterface(slow_echo).queue().launch()