space-example / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
5aa350d verified
raw
history blame
249 Bytes
import gradio as gr
def echo(message, history):
return message["text"]
demo = gr.ChatInterface(
fn=echo,
examples=[{"text": "hello"}, {"text": "hola"}, {"text": "merhaba"}],
title="Echo Bot",
multimodal=True,
)
demo.launch()