File size: 268 Bytes
2544251 a893561 032fd3e a893561 2544251 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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()
|