echo-chatbot / app.py
freddyaboulton's picture
Upload folder using huggingface_hub
4ee7aaa
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()