Spaces:
Runtime error
Runtime error
File size: 302 Bytes
86055e1 |
1 2 3 4 5 6 7 8 9 10 |
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() |