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 small CLI harness that runs a deployment-style workflow while exercising the package's telemetry controls and spinner-based progress feedback.
--config argument defaulting to the package's standard config filename, fails with FileNotFoundError for missing files, and returns exit code 0 on success. @test--no-analytics flag mirrors the environment variable opt-out and is forwarded into telemetry handling. @test@generates
def run_deploy(config_path: str, disable_analytics: bool = False) -> str:
"""
Executes the deploy workflow with telemetry and progress feedback.
Returns the final status message when the workflow completes.
Raises FileNotFoundError when the config file is missing.
"""
def main(argv: list[str] | None = None) -> int:
"""
Parses CLI args, applies telemetry opt-outs, streams progress, and exits with status code.
"""Provides telemetry controls, analytics opt-out handling, and CLI spinner utilities for progress feedback.
Used for argument parsing in the wrapper CLI.