andreska commited on
Commit
3a61d2f
·
verified ·
1 Parent(s): e42c0ff

Reverted to returning a text instead of textbox

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ iface = gr.Interface(
37
  gr.Textbox(label="Project Data", lines=2),
38
  gr.Textbox(label="Question", lines=1)
39
  ],
40
- outputs=gr.Textbox(label="Analysis", lines=10, streaming=True),
41
  api_name="analyze"
42
  )
43
 
 
37
  gr.Textbox(label="Project Data", lines=2),
38
  gr.Textbox(label="Question", lines=1)
39
  ],
40
+ outputs="text",
41
  api_name="analyze"
42
  )
43