UNPKG

@langgraph-js/bundler

Version:

Build tool for LangGraph.js applications that packages graph configurations into deployable modules

21 lines (20 loc) 438 B
export interface LanggraphConfig { node_version?: string; dependencies?: string[]; graphs: Record<string, string>; env?: string; auth?: { path: string; }; dist?: string; callbacks?: { path: string; }; http?: { app: string; }; } /** * 构建 Langgraph 项目 */ export declare function buildLanggraph(cwd?: string, databaseType?: 'sqlite' | 'postgres'): Promise<void>;