bstraehle commited on
Commit
64b1094
1 Parent(s): 5bcc2da

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 = f"Today is {datetime.date.today()}. {os.environ['INPUT']}")],
28
- outputs = [gr.Markdown(label = "Output", value = os.environ["OUTPUT"])],
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 = f"Today is {datetime.date.today()}. {os.environ['INPUT']}")],
28
+ outputs = [gr.Textbox(label = "Output", value = os.environ["OUTPUT"])],
29
  title = "Multi-Agent AI: Financial Analysis",
30
  description = os.environ["DESCRIPTION"])
31