space-example / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
fe85bac verified
raw
history blame contribute delete
174 Bytes
import gradio as gr
def echo(message, history):
return message["text"]
demo = gr.ChatInterface(
fn=echo,
title="Echo Bot",
multimodal=True,
)
demo.launch()