chatbot / app.py
ndhieunguyen's picture
Upload folder using huggingface_hub
c914190
raw
history blame contribute delete
128 Bytes
import gradio as gr
def slow_echo(message, history):
return message
demo = gr.ChatInterface(slow_echo).queue().launch()