diff --git a/src/agentops/cli/app.py b/src/agentops/cli/app.py index 8441c116..97625839 100644 --- a/src/agentops/cli/app.py +++ b/src/agentops/cli/app.py @@ -102,16 +102,6 @@ def cmd_agent_list() -> None: DEFAULT_REPORT_INPUT = Path(".agentops/results/latest/results.json") -def _planned_command(command_name: str) -> None: - typer.echo( - "This command is planned but not implemented in this release:\n" - f" {command_name}\n" - "Please use the currently available commands" - " (`init`, `eval run`, `eval compare`, `report`, `config cicd`) for now." - ) - raise typer.Exit(code=1) - - # --------------------------------------------------------------------------- # Global callback — configures logging before any command runs # ---------------------------------------------------------------------------