File size: 249 Bytes
ff74699
1534ee5
4ebcf5f
 
 
e81b638
4ebcf5f
e81b638
1
2
3
4
5
6
7
8
import gradio as gr

def echo(message, history, new_param):
    # Use the new_param in your function logic
    return message

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