From 9c36a7de8535386bde05f721bb0bcbc1d036d5c0 Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Fri, 21 Mar 2025 11:20:29 -0700 Subject: [PATCH] Add studio URL flag --- libs/cli/langgraph_cli/cli.py | 2 +- libs/cli/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/cli/langgraph_cli/cli.py b/libs/cli/langgraph_cli/cli.py index e12e3e7f9..12f9ec57e 100644 --- a/libs/cli/langgraph_cli/cli.py +++ b/libs/cli/langgraph_cli/cli.py @@ -575,7 +575,7 @@ def dockerfile(save_path: str, config: pathlib.Path, add_docker_compose: bool) - default=False, ) @click.option( - "--studio_url", + "--studio-url", type=str, default=None, help="URL of the LangGraph Studio instance to connect to. Defaults to https://smith.langchain.com", diff --git a/libs/cli/pyproject.toml b/libs/cli/pyproject.toml index cbf0a7d14..8d768570a 100644 --- a/libs/cli/pyproject.toml +++ b/libs/cli/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langgraph-cli" -version = "0.1.78" +version = "0.1.79" description = "CLI for interacting with LangGraph API" authors = [] license = "MIT"