Update app.py
Browse files
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.
|
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 |
|