Sephfox commited on
Commit
f8ff0d4
·
verified ·
1 Parent(s): 2cc6b33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -281,9 +281,11 @@ iface = gr.Interface(
281
  fn=process_input,
282
  inputs="text",
283
  outputs=[
284
- gradio.components.Textbox(label="Emotional Response", interactive=False, show_error=True),
285
- gradio.components.Textbox(label="Sentiment Response", interactive=False, show_error=True),
286
- gradio.components.Textbox(label="Generated Text", interactive=False, show_error=True)
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()