Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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,
|
| 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()
|