Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
|
|
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
|