tessl install tessl/pypi-langgraph-cli@0.4.0CLI for interacting with LangGraph API
Agent Success
Agent success rate when using this tile
74%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.17x
Baseline
Agent success rate without this tile
63%
A helper to run the package-provided in-memory development server with hot reload for a LangGraph project.
@generates
def launch_dev_server(
config_path: str,
port: int = 8123,
*,
open_browser: bool = True,
tunnel: bool = False,
debugger_port: int | None = None,
wait_for_debugger: bool = False,
) -> None:
"""
Start the package's dev server with hot reload for the project defined in config_path.
Blocks until the server process exits.
Raises:
FileNotFoundError: if config_path does not exist.
RuntimeError: if startup fails (e.g., invalid config or port already in use).
"""Provides the dev server command with hot reload, debugging, tunneling, and browser control options.