test / app.py
netcetera's picture
Update app.py
df5d24d
raw
history blame contribute delete
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()