Update app.py
Browse files
app.py
CHANGED
@@ -27,8 +27,8 @@ gr.close_all()
|
|
27 |
demo = gr.Interface(fn = invoke,
|
28 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
29 |
gr.Textbox(label = "Topic", value=os.environ["TOPIC"], lines = 1)],
|
30 |
-
outputs = [gr.Markdown(label = "
|
31 |
-
title = "Multi-Agent AI: Article
|
32 |
description = os.environ["DESCRIPTION"])
|
33 |
|
34 |
demo.launch()
|
|
|
27 |
demo = gr.Interface(fn = invoke,
|
28 |
inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
|
29 |
gr.Textbox(label = "Topic", value=os.environ["TOPIC"], lines = 1)],
|
30 |
+
outputs = [gr.Markdown(label = "Article", value=os.environ["OUTPUT"])],
|
31 |
+
title = "Multi-Agent AI: Article Writing",
|
32 |
description = os.environ["DESCRIPTION"])
|
33 |
|
34 |
demo.launch()
|