@n8n/ai-workflow-builder 1.13.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/planner.agent.d.ts +1 -1
- package/dist/agents/responder.agent.d.ts +6 -2
- package/dist/build.tsbuildinfo +1 -1
- package/dist/code-builder/tools/code-builder-get.tool.d.ts +8 -10
- package/dist/code-builder/tools/code-builder-search.tool.d.ts +1 -1
- package/dist/code-builder/tools/get-suggested-nodes.tool.d.ts +1 -1
- package/dist/tools/get-documentation.tool.d.ts +10 -2
- package/dist/tools/get-node-examples.tool.d.ts +3 -3
- package/dist/tools/get-workflow-examples.tool.d.ts +1 -1
- package/dist/tools/introspect.tool.d.ts +6 -2
- package/dist/tools/node-details.tool.d.ts +7 -2
- package/dist/tools/node-search.tool.d.ts +1 -1
- package/dist/tools/submit-questions.tool.d.ts +1 -1
- package/dist/tools/web-fetch.tool.d.ts +4 -2
- package/dist/workflow-builder-agent.js +4 -1
- package/dist/workflow-builder-agent.js.map +1 -1
- package/package.json +8 -8
|
@@ -56,7 +56,7 @@ export declare function createPlannerAgent(config: PlannerAgentConfig): import("
|
|
|
56
56
|
suggestedNodes?: string[] | undefined;
|
|
57
57
|
}[];
|
|
58
58
|
additionalSpecs?: string[] | undefined;
|
|
59
|
-
}, undefined, import("langchain").AnyAnnotationRoot, readonly import("langchain").AgentMiddleware<any, any, any, readonly (import("@langchain/core/tools").ClientTool | import("@langchain/core/tools").ServerTool)[]>[], readonly StructuredTool<import("@langchain/core/tools").ToolSchemaBase, any, any, any>[]>>;
|
|
59
|
+
}, undefined, import("langchain").AnyAnnotationRoot, readonly import("langchain").AgentMiddleware<any, any, any, readonly (import("@langchain/core/tools").ClientTool | import("@langchain/core/tools").ServerTool)[]>[], readonly StructuredTool<import("@langchain/core/tools").ToolSchemaBase, any, any, any, unknown>[]>>;
|
|
60
60
|
export type PlannerAgentType = ReturnType<typeof createPlannerAgent>;
|
|
61
61
|
export interface PlannerNodeInput {
|
|
62
62
|
userRequest: string;
|
|
@@ -79,11 +79,15 @@ export declare function createResponderAgent(config: ResponderAgentConfig): impo
|
|
|
79
79
|
category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
|
|
80
80
|
issue: string;
|
|
81
81
|
source?: string | undefined;
|
|
82
|
-
}>,
|
|
82
|
+
}>, {
|
|
83
|
+
category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
|
|
84
|
+
issue: string;
|
|
85
|
+
source?: string | undefined;
|
|
86
|
+
}, {
|
|
83
87
|
category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
|
|
84
88
|
issue: string;
|
|
85
89
|
source?: string | undefined;
|
|
86
|
-
}, import("@langchain/langgraph").Command<unknown, Record<string, unknown>, string>, string>)[]>>;
|
|
90
|
+
}, import("@langchain/langgraph").Command<unknown, Record<string, unknown>, string>, unknown, string>)[]>>;
|
|
87
91
|
export type ResponderAgentType = ReturnType<typeof createResponderAgent>;
|
|
88
92
|
export declare function invokeResponderAgent(agent: ResponderAgentType, context: ResponderContext, config?: RunnableConfig, options?: {
|
|
89
93
|
enableIntrospection?: boolean;
|