Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -26,11 +26,11 @@ 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": {
|
@@ -49,6 +49,7 @@ class ProjectScopingTool(Tool):
|
|
49 |
self.project_details = {
|
50 |
"type": project_type,
|
51 |
"domain": domain,
|
|
|
52 |
"budget_range": {"min": budget_min, "max": budget_max},
|
53 |
"timeline": {"months": timeline_months}
|
54 |
}
|
|
|
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": {
|
|
|
49 |
self.project_details = {
|
50 |
"type": project_type,
|
51 |
"domain": domain,
|
52 |
+
|
53 |
"budget_range": {"min": budget_min, "max": budget_max},
|
54 |
"timeline": {"months": timeline_months}
|
55 |
}
|