echo-chatbot / app.py
lkw99's picture
Upload folder using huggingface_hub
52c0bb9 verified
raw
history blame contribute delete
126 Bytes
import gradio as gr
def slow_echo(message, history):
return message
demo = gr.ChatInterface(slow_echo).queue().launch()