bstraehle commited on
Commit
a4df3a3
·
verified ·
1 Parent(s): 15a87e4

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 Advanced RAG to Agentic RAG", lines = 2)],
25
  outputs = [gr.Textbox(label = "Output", lines = 1)],
26
- title = "Agentic RAG: LinkedIn Post Generation",
27
  description = os.environ["DESCRIPTION"])
28
 
29
  demo.launch()
 
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 Advanced RAG to Agentic RAG", lines = 1)],
25
  outputs = [gr.Textbox(label = "Output", lines = 1)],
26
+ title = "Multi-Agent RAG: LinkedIn Post Generation",
27
  description = os.environ["DESCRIPTION"])
28
 
29
  demo.launch()