bluenevus commited on
Commit
faefb38
·
verified ·
1 Parent(s): f62109e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -25,7 +25,7 @@ matrix_type = None
25
 
26
  # Matrix types and their descriptions
27
  matrix_types = {
28
- "Project Plan Matrix": "Generate a comprehensive project management matrix outlining all aspects of project management, including scope, schedule, budget, quality, resources, communications, risk, procurement, and stakeholder management.",
29
  "Communications Plan Matrix": "Create a matrix showing stakeholders, communication methods, frequency, and responsibilities.",
30
  "Project Kick-off Matrix": "Generate a matrix outlining key project details, goals, team roles, and initial timelines.",
31
  "Decision Matrix": "Develop a matrix for evaluating options against criteria, with weighted scores analysis of alternatives style.",
@@ -79,6 +79,7 @@ app.layout = dbc.Container([
79
  ])
80
  ], width=3),
81
  dbc.Col([
 
82
  dcc.Loading(
83
  id="loading-indicator",
84
  type="dot",
@@ -88,6 +89,7 @@ app.layout = dbc.Container([
88
  dbc.Button("Download Matrix", id="btn-download", color="success", className="mt-3"),
89
  dcc.Download(id="download-matrix"),
90
  html.Hr(),
 
91
  dcc.Loading(
92
  id="chat-loading",
93
  type="dot",
 
25
 
26
  # Matrix types and their descriptions
27
  matrix_types = {
28
+ "Project Plan Matrix": "Generate a project management matrix outlining all aspects of project management that summarizes components such as scope, schedule, budget, quality, resources, communications, risk, procurement, and stakeholder management.",
29
  "Communications Plan Matrix": "Create a matrix showing stakeholders, communication methods, frequency, and responsibilities.",
30
  "Project Kick-off Matrix": "Generate a matrix outlining key project details, goals, team roles, and initial timelines.",
31
  "Decision Matrix": "Develop a matrix for evaluating options against criteria, with weighted scores analysis of alternatives style.",
 
79
  ])
80
  ], width=3),
81
  dbc.Col([
82
+ html.Div(style={"height": "20px"}), # Added small gap
83
  dcc.Loading(
84
  id="loading-indicator",
85
  type="dot",
 
89
  dbc.Button("Download Matrix", id="btn-download", color="success", className="mt-3"),
90
  dcc.Download(id="download-matrix"),
91
  html.Hr(),
92
+ html.Div(style={"height": "20px"}), # Added small gap
93
  dcc.Loading(
94
  id="chat-loading",
95
  type="dot",