langgraph-cli 0.1.77__tar.gz → 0.1.78__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/PKG-INFO +3 -3
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/README.md +1 -1
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/cli.py +8 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/pyproject.toml +2 -2
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/LICENSE +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/__init__.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/analytics.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/config.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/constants.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/docker.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/exec.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/progress.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/py.typed +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/templates.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/util.py +0 -0
- {langgraph_cli-0.1.77 → langgraph_cli-0.1.78}/langgraph_cli/version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: langgraph-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.78
|
|
4
4
|
Summary: CLI for interacting with LangGraph API
|
|
5
5
|
Home-page: https://www.github.com/langchain-ai/langgraph
|
|
6
6
|
License: MIT
|
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
14
|
Provides-Extra: inmem
|
|
15
15
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
16
|
-
Requires-Dist: langgraph-api (>=0.0.
|
|
16
|
+
Requires-Dist: langgraph-api (>=0.0.32,<0.1.0) ; (python_version >= "3.11" and python_version < "4.0") and (extra == "inmem")
|
|
17
17
|
Requires-Dist: python-dotenv (>=0.8.0) ; extra == "inmem"
|
|
18
18
|
Project-URL: Repository, https://www.github.com/langchain-ai/langgraph
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
@@ -99,7 +99,7 @@ The CLI uses a `langgraph.json` configuration file with these key settings:
|
|
|
99
99
|
}
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
-
See the [full documentation](https://langchain-ai.github.io/langgraph/
|
|
102
|
+
See the [full documentation](https://langchain-ai.github.io/langgraph/cloud/reference/cli/) for detailed configuration options.
|
|
103
103
|
|
|
104
104
|
## Development
|
|
105
105
|
|
|
@@ -79,7 +79,7 @@ The CLI uses a `langgraph.json` configuration file with these key settings:
|
|
|
79
79
|
}
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
See the [full documentation](https://langchain-ai.github.io/langgraph/
|
|
82
|
+
See the [full documentation](https://langchain-ai.github.io/langgraph/cloud/reference/cli/) for detailed configuration options.
|
|
83
83
|
|
|
84
84
|
## Development
|
|
85
85
|
|
|
@@ -574,6 +574,12 @@ def dockerfile(save_path: str, config: pathlib.Path, add_docker_compose: bool) -
|
|
|
574
574
|
help="Wait for a debugger client to connect to the debug port before starting the server",
|
|
575
575
|
default=False,
|
|
576
576
|
)
|
|
577
|
+
@click.option(
|
|
578
|
+
"--studio_url",
|
|
579
|
+
type=str,
|
|
580
|
+
default=None,
|
|
581
|
+
help="URL of the LangGraph Studio instance to connect to. Defaults to https://smith.langchain.com",
|
|
582
|
+
)
|
|
577
583
|
@cli.command(
|
|
578
584
|
"dev",
|
|
579
585
|
help="🏃♀️➡️ Run LangGraph API server in development mode with hot reloading and debugging support",
|
|
@@ -588,6 +594,7 @@ def dev(
|
|
|
588
594
|
no_browser: bool,
|
|
589
595
|
debug_port: Optional[int],
|
|
590
596
|
wait_for_client: bool,
|
|
597
|
+
studio_url: Optional[str],
|
|
591
598
|
):
|
|
592
599
|
"""CLI entrypoint for running the LangGraph API server."""
|
|
593
600
|
try:
|
|
@@ -651,6 +658,7 @@ def dev(
|
|
|
651
658
|
wait_for_client=wait_for_client,
|
|
652
659
|
auth=config_json.get("auth"),
|
|
653
660
|
http=config_json.get("http"),
|
|
661
|
+
studio_url=studio_url,
|
|
654
662
|
)
|
|
655
663
|
|
|
656
664
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "langgraph-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.78"
|
|
4
4
|
description = "CLI for interacting with LangGraph API"
|
|
5
5
|
authors = []
|
|
6
6
|
license = "MIT"
|
|
@@ -14,7 +14,7 @@ langgraph = "langgraph_cli.cli:cli"
|
|
|
14
14
|
[tool.poetry.dependencies]
|
|
15
15
|
python = "^3.9.0,<4.0"
|
|
16
16
|
click = "^8.1.7"
|
|
17
|
-
langgraph-api = { version = ">=0.0.
|
|
17
|
+
langgraph-api = { version = ">=0.0.32,<0.1.0", optional = true, python = ">=3.11,<4.0" }
|
|
18
18
|
python-dotenv = { version = ">=0.8.0", optional = true }
|
|
19
19
|
|
|
20
20
|
[tool.poetry.group.dev.dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|