import gradio as gr def chat(message, history): return str(message) demo = gr.ChatInterface( fn=chat, # examples=[{"text": "hello"}, {"text": "hola"}, {"text": "merhaba"}], title="Echo Bot", multimodal=True) demo.launch()