sample_chatbot / app.py
aliriaz2k16's picture
Create app.py
1462cbc verified
raw
history blame contribute delete
No virus
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()