Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -281,9 +281,11 @@ iface = gr.Interface(
|
|
281 |
fn=process_input,
|
282 |
inputs="text",
|
283 |
outputs=[
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
],
|
288 |
allow_flagging="never"
|
289 |
-
)
|
|
|
|
|
|
281 |
fn=process_input,
|
282 |
inputs="text",
|
283 |
outputs=[
|
284 |
+
gr.Textbox(label="Emotional Response", interactive=False),
|
285 |
+
gr.Textbox(label="Sentiment Response", interactive=False),
|
286 |
+
gr.Textbox(label="Generated Text", interactive=False)
|
287 |
],
|
288 |
allow_flagging="never"
|
289 |
+
)
|
290 |
+
|
291 |
+
iface.launch()
|