Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -26,15 +26,15 @@ class ProjectScopingTool(Tool):
|
|
26 |
"description": "The industry or field related to the project (e.g., 'finance', 'healthcare').",
|
27 |
},
|
28 |
"budget_min": {
|
29 |
-
"type": "
|
30 |
"description": "The minimum budget allocated for the project.",
|
31 |
},
|
32 |
"budget_max": {
|
33 |
-
"type": "
|
34 |
"description": "The maximum budget allocated for the project.",
|
35 |
},
|
36 |
"timeline_months": {
|
37 |
-
"type": "
|
38 |
"description": "The expected duration of the project in months.",
|
39 |
},
|
40 |
}
|
@@ -93,11 +93,11 @@ class CostEstimationTool(Tool):
|
|
93 |
|
94 |
inputs = {
|
95 |
"architecture_size": {
|
96 |
-
"type": "
|
97 |
"description": "The estimated complexity of the architecture on a scale from 1 to 10.",
|
98 |
},
|
99 |
"timeline_months": {
|
100 |
-
"type": "
|
101 |
"description": "The project duration in months.",
|
102 |
}
|
103 |
}
|
|
|
26 |
"description": "The industry or field related to the project (e.g., 'finance', 'healthcare').",
|
27 |
},
|
28 |
"budget_min": {
|
29 |
+
"type": "number",
|
30 |
"description": "The minimum budget allocated for the project.",
|
31 |
},
|
32 |
"budget_max": {
|
33 |
+
"type": "number",
|
34 |
"description": "The maximum budget allocated for the project.",
|
35 |
},
|
36 |
"timeline_months": {
|
37 |
+
"type": "number",
|
38 |
"description": "The expected duration of the project in months.",
|
39 |
},
|
40 |
}
|
|
|
93 |
|
94 |
inputs = {
|
95 |
"architecture_size": {
|
96 |
+
"type": "number",
|
97 |
"description": "The estimated complexity of the architecture on a scale from 1 to 10.",
|
98 |
},
|
99 |
"timeline_months": {
|
100 |
+
"type": "number",
|
101 |
"description": "The project duration in months.",
|
102 |
}
|
103 |
}
|