Spaces:
Runtime error
Runtime error
Matt
commited on
Commit
·
4041585
1
Parent(s):
19568e8
Bugfix
Browse files
app.py
CHANGED
@@ -40,5 +40,5 @@ iface = gr.Interface(
|
|
40 |
gr.TextArea(value=str(demo_conversation1), lines=5, label="Conversation 1"),
|
41 |
gr.TextArea(value=str(demo_conversation2), lines=5, label="Conversation 2")
|
42 |
],
|
43 |
-
outputs=[gr.TextArea
|
44 |
iface.launch()
|
|
|
40 |
gr.TextArea(value=str(demo_conversation1), lines=5, label="Conversation 1"),
|
41 |
gr.TextArea(value=str(demo_conversation2), lines=5, label="Conversation 2")
|
42 |
],
|
43 |
+
outputs=[gr.TextArea(label=output_name) for output_name in output_names])
|
44 |
iface.launch()
|