jamesbright commited on
Commit
1177031
·
verified ·
1 Parent(s): e7b8eec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -12,6 +12,7 @@ model = HfApiModel(
12
 
13
 
14
  class ProjectScopingTool(Tool):
 
15
  description = """
16
  Handles project scoping by collecting key details such as type, domain, budget, and timeline.
17
  """
@@ -38,6 +39,7 @@ class ProjectScopingTool(Tool):
38
 
39
 
40
  class TechnicalArchitectureTool(Tool):
 
41
  description = """
42
  Determines the appropriate technical architecture based on the project type.
43
  """
@@ -63,6 +65,7 @@ class TechnicalArchitectureTool(Tool):
63
 
64
 
65
  class CostEstimationTool(Tool):
 
66
  description = """
67
  Estimates the cost based on the architecture complexity and timeline.
68
  """
@@ -77,6 +80,7 @@ class CostEstimationTool(Tool):
77
 
78
 
79
  class DeploymentTool(Tool):
 
80
  description = """
81
  Suggests a deployment strategy based on best practices.
82
  """
@@ -90,6 +94,7 @@ class DeploymentTool(Tool):
90
 
91
 
92
  class MeetingPreparationTool(Tool):
 
93
  description = """
94
  Provides meeting agendas depending on the project stage.
95
  """
 
12
 
13
 
14
  class ProjectScopingTool(Tool):
15
+ name = "project_scoping_tool"
16
  description = """
17
  Handles project scoping by collecting key details such as type, domain, budget, and timeline.
18
  """
 
39
 
40
 
41
  class TechnicalArchitectureTool(Tool):
42
+ name = "technical_architecture_tool"
43
  description = """
44
  Determines the appropriate technical architecture based on the project type.
45
  """
 
65
 
66
 
67
  class CostEstimationTool(Tool):
68
+ name = "cost_estimation_tool"
69
  description = """
70
  Estimates the cost based on the architecture complexity and timeline.
71
  """
 
80
 
81
 
82
  class DeploymentTool(Tool):
83
+ name = "deployment_tool"
84
  description = """
85
  Suggests a deployment strategy based on best practices.
86
  """
 
94
 
95
 
96
  class MeetingPreparationTool(Tool):
97
+ name = "meeting_preparation_tool"
98
  description = """
99
  Provides meeting agendas depending on the project stage.
100
  """