jamesbright commited on
Commit
34c249a
·
verified ·
1 Parent(s): b9832c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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": "float",
30
  "description": "The minimum budget allocated for the project.",
31
  },
32
  "budget_max": {
33
- "type": "float",
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
  }