sandbox / app.py
kaitwithkwk's picture
Create app.py
af824f1 verified
raw
history blame
189 Bytes
import gradio as gr
def echo(message, history):
return message
demo = gr.ChatInterface(fn=echo, type="messages", examples=["hello", "hola", "merhaba"], title="Echo Bot")
demo.launch()