jamesbright commited on
Commit
874666c
·
verified ·
1 Parent(s): 722c414

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -5
app.py CHANGED
@@ -161,13 +161,20 @@ class MeetingPreparationTool(Tool):
161
  }
162
  return json.dumps(agendas.get(project_stage, "No agenda found for this stage"), indent=2)
163
 
 
 
 
 
 
 
164
  # Instantiate tools
165
  tools = [
166
- ProjectScopingTool(),
167
- TechnicalArchitectureTool(),
168
- CostEstimationTool(),
169
- DeploymentTool(),
170
- MeetingPreparationTool()
 
171
  ]
172
 
173
  # Define the agent
 
161
  }
162
  return json.dumps(agendas.get(project_stage, "No agenda found for this stage"), indent=2)
163
 
164
+
165
+ project_scoping_tool = ProjectScopingTool()
166
+ technical_architecture_tool = TechnicalArchitectureTool()
167
+ cost_estimation_tool = CostEstimationTool()
168
+ deployment_tool = DeploymentTool()
169
+ meeting_preparation_tool = MeetingPreparationTool()
170
  # Instantiate tools
171
  tools = [
172
+ project_scoping_tool,
173
+ technical_architecture_tool,
174
+ cost_estimation_tool,
175
+ deployment_tool,
176
+ meeting_preparation_tool,
177
+ final_answer
178
  ]
179
 
180
  # Define the agent