Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,8 @@ class ProjectScopingTool(Tool):
|
|
18 |
def __init__(self):
|
19 |
self.project_details = {
|
20 |
"type": None,
|
21 |
-
"domain"
|
|
|
22 |
"technical_requirements": {},
|
23 |
"budget_range": {},
|
24 |
"timeline"
|
@@ -119,11 +120,11 @@ meeting_tool = MeetingPreparationTool()
|
|
119 |
|
120 |
# Define the agent
|
121 |
tools = [
|
122 |
-
scoping_tool
|
123 |
-
tech_arch_tool
|
124 |
-
cost_tool
|
125 |
-
deploy_tool
|
126 |
-
meeting_tool
|
127 |
]
|
128 |
|
129 |
agent = CodeAgent(
|
|
|
18 |
def __init__(self):
|
19 |
self.project_details = {
|
20 |
"type": None,
|
21 |
+
"domain"
|
22 |
+
: None,
|
23 |
"technical_requirements": {},
|
24 |
"budget_range": {},
|
25 |
"timeline"
|
|
|
120 |
|
121 |
# Define the agent
|
122 |
tools = [
|
123 |
+
scoping_tool,
|
124 |
+
tech_arch_tool,
|
125 |
+
cost_tool,
|
126 |
+
deploy_tool,
|
127 |
+
meeting_tool
|
128 |
]
|
129 |
|
130 |
agent = CodeAgent(
|