bstraehle commited on
Commit
9b9368d
1 Parent(s): 0a6d52e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -35,8 +35,8 @@ gr.close_all()
35
  demo = gr.Interface(fn = invoke,
36
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
37
  gr.Textbox(label = "Topic", value=os.environ["TOPIC"], lines = 1)],
38
- outputs = [gr.Markdown(label = "Generated Article", value=os.environ["OUTPUT"])],
39
- title = "Multi-Agent AI: Article Generation",
40
  description = os.environ["DESCRIPTION"])
41
 
42
  demo.launch()
 
35
  demo = gr.Interface(fn = invoke,
36
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
37
  gr.Textbox(label = "Topic", value=os.environ["TOPIC"], lines = 1)],
38
+ outputs = [gr.Markdown(label = "Article", value=os.environ["OUTPUT"])],
39
+ title = "Multi-Agent AI: Article Writing",
40
  description = os.environ["DESCRIPTION"])
41
 
42
  demo.launch()