Spaces:
Runtime error
Runtime error
fixed
Browse files
app.py
CHANGED
@@ -12,7 +12,8 @@ demo = gr.Interface(
|
|
12 |
label=question,
|
13 |
info=f"Do you have {question.replace('_', ' ').title()!r}?"
|
14 |
) for question in questions
|
15 |
-
]
|
|
|
16 |
)
|
17 |
|
18 |
demo.launch()
|
|
|
12 |
label=question,
|
13 |
info=f"Do you have {question.replace('_', ' ').title()!r}?"
|
14 |
) for question in questions
|
15 |
+
],
|
16 |
+
outputs="text"
|
17 |
)
|
18 |
|
19 |
demo.launch()
|