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%
Create a small utility that turns a validated LangGraph configuration into ready-to-use deployment assets. The utility should delegate Dockerfile and compose scaffolding to the dependency's generation features instead of hand-written templates.
.env and .dockerignore files based on the config (or a provided env file), ensuring the generated files sit beside the Dockerfile. @test@generates
from pathlib import Path
from typing import Optional
def generate_assets(
config_path: Path,
output_dir: Path,
*,
base_image: Optional[str] = None,
include_compose: bool = False
) -> None:
"""Generate deployment assets from a LangGraph config, delegating file emission to the dependency."""Provides Dockerfile and compose generation for LangGraph projects.