docker_test / src /app.py
Abasov's picture
Upload app.py
0e4ec99 verified
raw
history blame contribute delete
182 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(share=True)