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%
Build a helper that produces a Docker image for a JavaScript LangGraph service that lives inside a monorepo, wiring in custom install/build commands so the correct workspace packages are available.
@generates
export interface BuildOptions {
workspaceRoot: string;
serviceDir: string;
graphEntry: string;
nodeVersion: string;
installCommand: string;
buildCommand: string;
imageTag: string;
buildArgs?: Record<string, string>;
}
export async function buildJsGraphImage(options: BuildOptions): Promise<void>;Provides CLI support for validating LangGraph configs and building Docker images for JavaScript/monorepo projects with custom install/build commands.