Files
2026-05-26 22:08:02 +09:00

11 lines
180 B
Python

import gradio as gr
def echo(message, history):
return message
demo = gr.ChatInterface(
fn=echo, examples=["hello", "hola", "merhaba"], title="Echo Bot"
)
demo.launch()