CLI for interacting with LangGraph API
Overall
score
74%
Evaluation — 74%
↑ 1.17xAgent success when using this tile
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.
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