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