From a79c8740f95e092535ef78a9f41f957d79d17d13 Mon Sep 17 00:00:00 2001 From: syachamaneni-lc Date: Wed, 23 Sep 2026 09:58:59 -0700 Subject: [PATCH] note --- libs/cli/langgraph_cli/deploy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/cli/langgraph_cli/deploy.py b/libs/cli/langgraph_cli/deploy.py index 78de5f119..458b5ecec 100644 --- a/libs/cli/langgraph_cli/deploy.py +++ b/libs/cli/langgraph_cli/deploy.py @@ -1982,7 +1982,7 @@ def _deploy_cmd( validate_deploy_commands(install_command, build_command) agent = None if agent_id is not None or environment is not None: - em.note("--agent-id and --environment flags are in private beta") + em.note("Note: --agent-id and --environment flags are in private beta") if not agent_id or not agent_id.strip() or not environment: raise click.UsageError( "--agent-id and --environment are required together." @@ -2141,7 +2141,7 @@ def deploy_list( ) -> None: if agent_id is not None or environment is not None: click.secho( - "--agent-id and --environment flags are in private beta", fg="yellow" + "Note: --agent-id and --environment flags are in private beta", fg="yellow" ) if agent_id is not None and not agent_id.strip(): raise click.UsageError("--agent-id must not be empty.")