UNPKG

@langgraph-js/bundler

Version:

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

24 lines (23 loc) 491 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; }; bundler?: { externals?: string[]; }; } /** * 构建 Langgraph 项目 */ export declare function buildLanggraph(cwd?: string, databaseType?: 'sqlite' | 'postgres'): Promise<void>;