test-sharing / app.py
abidlabs's picture
abidlabs HF staff
Update app.py
ee27d13 verified
raw
history blame contribute delete
268 Bytes
import gradio as gr
def echo(message, history):
return message["text"]
demo = gr.ChatInterface(
fn=echo,
type="messages",
examples=[{"text": "hello"}, {"text": "hola"}, {"text": "merhaba"}],
title="Echo Bot",
multimodal=True,
)
demo.launch()