Tutorial / src /app.py
Crimson206's picture
Upload folder using huggingface_hub
df46be5 verified
raw
history blame
125 Bytes
import gradio as gr
def slow_echo(message, history):
return message
demo = gr.ChatInterface(slow_echo).queue().launch()