remove leo stuff

This commit is contained in:
Taylor Wilsdon
2026-02-01 12:06:49 -05:00
parent f8748ccd10
commit cfab4a59f7
3 changed files with 2 additions and 54 deletions

View File

@@ -13,7 +13,7 @@ import yaml
logger = logging.getLogger(__name__)
TierLevel = Literal["core", "extended", "complete", "leo"]
TierLevel = Literal["core", "extended", "complete"]
class ToolTierLoader:
@@ -109,15 +109,6 @@ class ToolTierLoader:
Returns:
List of tool names up to the specified tier level
"""
# Special handling for standalone tiers (e.g., "leo")
# These tiers are not cumulative and contain their own tool set
standalone_tiers = ["leo"]
if tier in standalone_tiers:
# For standalone tiers, return only the tools in that tier
return self.get_tools_for_tier(tier, services)
# For cumulative tiers (core, extended, complete), accumulate tools
tier_order = ["core", "extended", "complete"]
max_tier_index = tier_order.index(tier)