diff --git a/lib/cli/src/crewai_cli/shared/token_manager.py b/lib/cli/src/crewai_cli/shared/token_manager.py index aeac1b77b..d9f77999a 100644 --- a/lib/cli/src/crewai_cli/shared/token_manager.py +++ b/lib/cli/src/crewai_cli/shared/token_manager.py @@ -1,18 +1,12 @@ -"""Deprecated: use ``crewai_core.token_manager`` instead.""" +"""Re-export of ``crewai_core.token_manager.TokenManager``. + +Kept as a stable import path for the CLI; new code should import from +``crewai_core.token_manager`` directly. +""" from __future__ import annotations -import warnings - from crewai_core.token_manager import TokenManager as TokenManager __all__ = ["TokenManager"] - - -warnings.warn( - "crewai_cli.shared.token_manager is deprecated; " - "import from crewai_core.token_manager.", - DeprecationWarning, - stacklevel=2, -)