KiraPGR commited on
Commit
3c8e944
·
verified ·
1 Parent(s): 67f4463

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,5 +8,5 @@ def echo(message, history, new_param):
8
 
9
  new_param_input = gr.Textbox(label="New Parameter")
10
 
11
- demo = gr.ChatInterface(fn=echo, examples=[["hello", "hola", "merhaba"], ["1",'2', '3']], title="Echo Bot", additional_inputs=new_param_input)
12
  demo.launch()
 
8
 
9
  new_param_input = gr.Textbox(label="New Parameter")
10
 
11
+ demo = gr.ChatInterface(fn=echo, title="Echo Bot", additional_inputs=new_param_input)
12
  demo.launch()