Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ model = HfApiModel(
|
|
11 |
)
|
12 |
|
13 |
class ProjectScopingTool(Tool):
|
|
|
14 |
name = "project_scoping_tool"
|
15 |
description = """
|
16 |
Handles project scoping by collecting key details such as type, domain, budget, and timeline.
|
@@ -40,7 +41,7 @@ class ProjectScopingTool(Tool):
|
|
40 |
},
|
41 |
}
|
42 |
|
43 |
-
output_type = "
|
44 |
|
45 |
def forward(self, project_type: str, domain: str, budget_min: float, budget_max: float, timeline_months: int):
|
46 |
|
@@ -69,7 +70,7 @@ class TechnicalArchitectureTool(Tool):
|
|
69 |
}
|
70 |
}
|
71 |
|
72 |
-
output_type = "
|
73 |
|
74 |
def forward(self, project_type: str):
|
75 |
|
@@ -109,7 +110,7 @@ class CostEstimationTool(Tool):
|
|
109 |
}
|
110 |
}
|
111 |
|
112 |
-
output_type = "
|
113 |
|
114 |
def forward(self, architecture_size: int, timeline_months: int):
|
115 |
|
@@ -129,7 +130,7 @@ class DeploymentTool(Tool):
|
|
129 |
|
130 |
inputs = {}
|
131 |
|
132 |
-
output_type = "
|
133 |
|
134 |
def forward(self):
|
135 |
|
@@ -153,7 +154,7 @@ class MeetingPreparationTool(Tool):
|
|
153 |
}
|
154 |
}
|
155 |
|
156 |
-
output_type = "
|
157 |
|
158 |
def forward(self, project_stage: str):
|
159 |
|
|
|
11 |
)
|
12 |
|
13 |
class ProjectScopingTool(Tool):
|
14 |
+
|
15 |
name = "project_scoping_tool"
|
16 |
description = """
|
17 |
Handles project scoping by collecting key details such as type, domain, budget, and timeline.
|
|
|
41 |
},
|
42 |
}
|
43 |
|
44 |
+
output_type = "string"
|
45 |
|
46 |
def forward(self, project_type: str, domain: str, budget_min: float, budget_max: float, timeline_months: int):
|
47 |
|
|
|
70 |
}
|
71 |
}
|
72 |
|
73 |
+
output_type = "string"
|
74 |
|
75 |
def forward(self, project_type: str):
|
76 |
|
|
|
110 |
}
|
111 |
}
|
112 |
|
113 |
+
output_type = "string"
|
114 |
|
115 |
def forward(self, architecture_size: int, timeline_months: int):
|
116 |
|
|
|
130 |
|
131 |
inputs = {}
|
132 |
|
133 |
+
output_type = "string"
|
134 |
|
135 |
def forward(self):
|
136 |
|
|
|
154 |
}
|
155 |
}
|
156 |
|
157 |
+
output_type = "string"
|
158 |
|
159 |
def forward(self, project_stage: str):
|
160 |
|