bstraehle commited on
Commit
9e5f8d0
·
verified ·
1 Parent(s): 43c185c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 = "Generated Article", value=os.environ["OUTPUT"])],
31
- title = "Multi-Agent AI: Article Generation",
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()