__init__.py python
27 lines 766 B
Raw
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 3 days ago
1 """Declarative model-routing policy (Track P / P-route §PR.4–§PR.6)."""
2
3 from tools.model_routing.labels import (
4 load_model_tier_ids,
5 validate_model_tier_entry,
6 validate_model_tiers_document,
7 )
8 from tools.model_routing.policy import (
9 RoutingPolicyError,
10 load_routing_policy,
11 validate_routing_policy,
12 )
13 from tools.model_routing.resolve import resolve_route
14 from tools.model_routing.types import PolicyValidationResult, RouteDecision, RouteSelector
15
16 __all__ = [
17 "PolicyValidationResult",
18 "RouteDecision",
19 "RouteSelector",
20 "RoutingPolicyError",
21 "load_model_tier_ids",
22 "load_routing_policy",
23 "resolve_route",
24 "validate_model_tier_entry",
25 "validate_model_tiers_document",
26 "validate_routing_policy",
27 ]
File History 1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 3 days ago