Update app.py
Browse files
app.py
CHANGED
@@ -24,10 +24,10 @@ gr.close_all()
|
|
24 |
|
25 |
demo = gr.Interface(fn = invoke,
|
26 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
27 |
-
gr.Textbox(label = "Topic", value=
|
28 |
gr.Number(label = "Word Count", value=1000, minimum=500, maximum=5000)],
|
29 |
-
outputs = [gr.Markdown(label = "Generated Blog Post", value=
|
30 |
title = "Multi-Agent RAG: Blog Post Generation",
|
31 |
-
description =
|
32 |
|
33 |
demo.launch()
|
|
|
24 |
|
25 |
demo = gr.Interface(fn = invoke,
|
26 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
27 |
+
gr.Textbox(label = "Topic", value="TODO", lines = 1),
|
28 |
gr.Number(label = "Word Count", value=1000, minimum=500, maximum=5000)],
|
29 |
+
outputs = [gr.Markdown(label = "Generated Blog Post", value="TODO")],
|
30 |
title = "Multi-Agent RAG: Blog Post Generation",
|
31 |
+
description = "TODO")
|
32 |
|
33 |
demo.launch()
|