CLI for interacting with LangGraph API
Overall
score
74%
Evaluation — 74%
↑ 1.17xAgent success when using this tile
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.
Install with Tessl CLI
npx tessl i tessl/pypi-langgraph-clievals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10