echo-chatbot / demo4.py
young4weapon's picture
Upload folder using huggingface_hub
b9a8411 verified
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()