bstraehle commited on
Commit
2959891
1 Parent(s): 64b2df2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ gr.close_all()
25
  demo = gr.Interface(fn = invoke,
26
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
27
  gr.Textbox(label = "Task", value = "Write a blogpost about the stock price performance of Nvidia in the past month. Today's date is 2024-06-03.")],
28
- outputs = [gr.Markdown(label = "Result", value=os.environ["OUTPUT"], line_breaks=True, sanitize_html=False)],
29
  title = "Multi-Agent AI: Financial Analysis",
30
  description = os.environ["DESCRIPTION"])
31
 
 
25
  demo = gr.Interface(fn = invoke,
26
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
27
  gr.Textbox(label = "Task", value = "Write a blogpost about the stock price performance of Nvidia in the past month. Today's date is 2024-06-03.")],
28
+ outputs = [gr.Textbox(label = "Result", value=os.environ["OUTPUT"])],
29
  title = "Multi-Agent AI: Financial Analysis",
30
  description = os.environ["DESCRIPTION"])
31