jamesbright commited on
Commit
722c414
·
verified ·
1 Parent(s): 7f1f750

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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": "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": {
37
- "type": "int",
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": "int",
97
  "description": "The estimated complexity of the architecture on a scale from 1 to 10.",
98
  },
99
  "timeline_months": {
100
- "type": "int",
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
  }