Update app.py
Browse files
app.py
CHANGED
@@ -21,6 +21,6 @@ demo = gr.Interface(fn = invoke,
|
|
21 |
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)],
|
22 |
outputs = [gr.Markdown(label = "Output", value="TODO")],
|
23 |
title = "Multi-Agent RAG: Chart Generation",
|
24 |
-
description = "
|
25 |
|
26 |
demo.launch()
|
|
|
21 |
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)],
|
22 |
outputs = [gr.Markdown(label = "Output", value="TODO")],
|
23 |
title = "Multi-Agent RAG: Chart Generation",
|
24 |
+
description = os.environ["DESCRIPTION"])
|
25 |
|
26 |
demo.launch()
|