From 52f46c97bd36e2957a5acf9b08fd1e8044dbfbaf Mon Sep 17 00:00:00 2001 From: "Parker J. Rule" <1254427+pjrule@users.noreply.github.com> Date: Tue, 8 Sep 2026 15:21:10 +0000 Subject: [PATCH] docs(cli): link deploy quickstart Co-authored-by: open-swe[bot] --- libs/cli/langgraph_cli/deploy.py | 2 +- libs/cli/tests/unit_tests/cli/test_cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/cli/langgraph_cli/deploy.py b/libs/cli/langgraph_cli/deploy.py index 97d339759..a6e8403e6 100644 --- a/libs/cli/langgraph_cli/deploy.py +++ b/libs/cli/langgraph_cli/deploy.py @@ -1607,7 +1607,7 @@ def _deploy_cmd( message = ( "We couldn't find a langgraph.json file. Run `langgraph deploy` from " "the root of a LangSmith Deployment project. To get started, visit " - "https://docs.langchain.com/langsmith/application-structure." + "https://docs.langchain.com/langsmith/deployment-quickstart." ) if json_output: em.error(message) diff --git a/libs/cli/tests/unit_tests/cli/test_cli.py b/libs/cli/tests/unit_tests/cli/test_cli.py index fe2b77ed0..ca0ec7a04 100644 --- a/libs/cli/tests/unit_tests/cli/test_cli.py +++ b/libs/cli/tests/unit_tests/cli/test_cli.py @@ -329,7 +329,7 @@ def test_deploy_missing_config_shows_actionable_error(tmp_path, monkeypatch) -> assert result.exit_code == 1 assert "We couldn't find a langgraph.json file." in result.output assert "Run `langgraph deploy` from the root" in result.output - assert "https://docs.langchain.com/langsmith/application-structure" in result.output + assert "https://docs.langchain.com/langsmith/deployment-quickstart" in result.output assert "Traceback" not in result.output