test_gradio / app.py
John Smith
Update app.py
53e4163
raw
history blame
172 Bytes
import gradio as gr
def echo(message, history):
return message
demo = gr.ChatInterface(fn=echo, examples=["hello", "hola", "merhaba"], title="Echo Bot")
demo.launch()