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