Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ gr.close_all()
|
|
21 |
demo = gr.Interface(fn = invoke,
|
22 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
23 |
gr.Textbox(label = "Input", value="Fetch the USA's GDP over the past 5 years, then draw a line graph of it. Once you code it up, finish.", lines = 1)],
|
24 |
-
outputs = [gr.
|
25 |
title = "Multi-Agent RAG: Chart Generation",
|
26 |
description = os.environ["DESCRIPTION"])
|
27 |
|
|
|
21 |
demo = gr.Interface(fn = invoke,
|
22 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
23 |
gr.Textbox(label = "Input", value="Fetch the USA's GDP over the past 5 years, then draw a line graph of it. Once you code it up, finish.", lines = 1)],
|
24 |
+
outputs = [gr.Textbox(label = "Output", value="TODO")],
|
25 |
title = "Multi-Agent RAG: Chart Generation",
|
26 |
description = os.environ["DESCRIPTION"])
|
27 |
|