diff --git a/litellm/router_strategy/complexity_router/config.py b/litellm/router_strategy/complexity_router/config.py index a4a9b489b29..837a6ba823c 100644 --- a/litellm/router_strategy/complexity_router/config.py +++ b/litellm/router_strategy/complexity_router/config.py @@ -589,7 +589,7 @@ class ComplexityRouterConfig(BaseModel): return self @model_validator(mode="after") - def _warn_unknown_tier_params(self) -> "ComplexityRouterConfig": + def _validate_tier_params(self) -> "ComplexityRouterConfig": known: Final = frozenset(OPENAI_CHAT_COMPLETION_PARAMS) | frozenset(all_litellm_params) for tier, target in self.tiers.items(): if isinstance(target, TierTarget):