bstraehle commited on
Commit
be81de0
·
verified ·
1 Parent(s): dcd238a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,9 +21,9 @@ gr.close_all()
21
 
22
  demo = gr.Interface(fn = invoke,
23
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
24
- gr.Textbox(label = "Topic", value="Evolution of Retrieval-Augmented Generation from Naive RAG to Agentic RAG", lines = 1),
25
  gr.Number(label = "Words", value="2500")],
26
- outputs = [gr.Textbox(label = "Output", lines = 1)],
27
  title = "Multi-Agent RAG: Blog Post Generation",
28
  description = os.environ["DESCRIPTION"])
29
 
 
21
 
22
  demo = gr.Interface(fn = invoke,
23
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
24
+ gr.Textbox(label = "Topic", value=os.environ["TOPIC"], lines = 1),
25
  gr.Number(label = "Words", value="2500")],
26
+ outputs = [gr.Textbox(label = "Output", value=os.environ["OUTPUT"], lines = 1)],
27
  title = "Multi-Agent RAG: Blog Post Generation",
28
  description = os.environ["DESCRIPTION"])
29