CLI for interacting with LangGraph API
Overall
score
74%
Evaluation — 74%
↑ 1.17xAgent success when using this tile
Create a small launcher that validates a LangGraph configuration, renders a Docker Compose file with common overrides, and brings the stack up using the package's deployment tooling.
@generates
from pathlib import Path
from typing import Optional
def render_compose(
config_path: Path,
*,
port: int = 8123,
extra_compose_path: Optional[Path] = None,
image: Optional[str] = None,
watch: bool = False,
debugger_port: Optional[int] = None,
debugger_base_url: Optional[str] = None,
postgres_uri: Optional[str] = None
) -> str:
"""Return docker-compose YAML for the stack using the validated configuration and provided overrides."""
def launch_services(
config_path: Path,
*,
port: int = 8123,
extra_compose_path: Optional[Path] = None,
image: Optional[str] = None,
watch: bool = False,
debugger_port: Optional[int] = None,
debugger_base_url: Optional[str] = None,
postgres_uri: Optional[str] = None,
recreate: bool = False,
verbose: bool = False,
wait: bool = False
) -> None:
"""Render compose YAML and start the services with the requested flags."""CLI toolkit for validating LangGraph configs, generating compose definitions, and running stacks.
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