echo-chatbot / app.py
likesimo75's picture
Upload folder using huggingface_hub
66b42f8 verified
raw
history blame contribute delete
No virus
130 Bytes
import gradio as gr
def slow_echo(message, history):
return message
demo = gr.ChatInterface(slow_echo).queue().launch()