Discordbot / app.py
ebartan's picture
Upload folder using huggingface_hub
f59cb3c
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()