File size: 172 Bytes
0745e64
e77f816
53e4163
 
e77f816
53e4163
 
1
2
3
4
5
6
7
import gradio as gr

def echo(message, history):
    return message

demo = gr.ChatInterface(fn=echo, examples=["hello", "hola", "merhaba"], title="Echo Bot")
demo.launch()