@n8n/ai-workflow-builder 1.25.0 → 1.26.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/responder.agent.d.ts +4 -4
- package/dist/build.tsbuildinfo +1 -1
- package/dist/code-builder/constants.d.ts +1 -0
- package/dist/code-builder/constants.js +5 -1
- package/dist/code-builder/constants.js.map +1 -1
- package/dist/code-builder/handlers/chat-setup-handler.js.map +1 -1
- package/dist/code-builder/handlers/text-editor-handler.d.ts +1 -3
- package/dist/code-builder/handlers/text-editor-handler.js +1 -3
- package/dist/code-builder/handlers/text-editor-handler.js.map +1 -1
- package/dist/code-builder/handlers/tool-dispatch-handler.d.ts +1 -1
- package/dist/code-builder/handlers/tool-dispatch-handler.js.map +1 -1
- package/dist/code-builder/index.d.ts +1 -1
- package/dist/code-builder/index.js +2 -1
- package/dist/code-builder/index.js.map +1 -1
- package/dist/code-builder/prompts/index.js +2 -2
- package/dist/code-builder/prompts/index.js.map +1 -1
- package/dist/code-builder/tools/code-builder-get.tool.d.ts +6 -6
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/multi-agent-workflow-subgraphs.d.ts +1 -1
- package/dist/multi-agent-workflow-subgraphs.js +2 -9
- package/dist/multi-agent-workflow-subgraphs.js.map +1 -1
- package/dist/prompts/agents/discovery.prompt.d.ts +1 -5
- package/dist/prompts/agents/discovery.prompt.js +11 -41
- package/dist/prompts/agents/discovery.prompt.js.map +1 -1
- package/dist/prompts/agents/index.d.ts +0 -1
- package/dist/prompts/agents/index.js.map +1 -1
- package/dist/prompts/index.d.ts +1 -1
- package/dist/prompts/index.js.map +1 -1
- package/dist/subgraphs/discovery.subgraph.d.ts +0 -1
- package/dist/subgraphs/discovery.subgraph.js +8 -29
- package/dist/subgraphs/discovery.subgraph.js.map +1 -1
- package/dist/tools/builder-tools.js +0 -4
- package/dist/tools/builder-tools.js.map +1 -1
- package/dist/tools/get-documentation.tool.d.ts +6 -6
- package/dist/tools/introspect.tool.d.ts +4 -4
- package/dist/tools/node-search.tool.d.ts +6 -6
- package/dist/tools/submit-questions.tool.d.ts +8 -8
- package/dist/types/tools.d.ts +0 -8
- package/dist/workflow-builder-agent.d.ts +0 -2
- package/dist/workflow-builder-agent.js +1 -2
- package/dist/workflow-builder-agent.js.map +1 -1
- package/package.json +12 -11
- package/dist/code-builder/handlers/text-editor.types.d.ts +0 -2
- package/dist/code-builder/handlers/text-editor.types.js +0 -13
- package/dist/code-builder/handlers/text-editor.types.js.map +0 -1
- package/dist/tools/get-workflow-examples.tool.d.ts +0 -34
- package/dist/tools/get-workflow-examples.tool.js +0 -138
- package/dist/tools/get-workflow-examples.tool.js.map +0 -1
|
@@ -72,20 +72,20 @@ export declare function createResponderAgent(config: ResponderAgentConfig): impo
|
|
|
72
72
|
category: z.ZodEnum<["conflicting_instructions", "missing_guidance", "unclear_node_description", "incomplete_example", "other"]>;
|
|
73
73
|
source: z.ZodOptional<z.ZodString>;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
|
|
76
75
|
issue: string;
|
|
76
|
+
category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
|
|
77
77
|
source?: string | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
|
|
80
79
|
issue: string;
|
|
80
|
+
category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
|
|
81
81
|
source?: string | undefined;
|
|
82
82
|
}>, {
|
|
83
|
-
category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
|
|
84
83
|
issue: string;
|
|
84
|
+
category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
|
|
85
85
|
source?: string | undefined;
|
|
86
86
|
}, {
|
|
87
|
-
category: "other" | "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example";
|
|
88
87
|
issue: string;
|
|
88
|
+
category: "conflicting_instructions" | "missing_guidance" | "unclear_node_description" | "incomplete_example" | "other";
|
|
89
89
|
source?: string | undefined;
|
|
90
90
|
}, import("@langchain/langgraph").Command<unknown, Record<string, unknown>, string>, unknown, string>)[]>>;
|
|
91
91
|
export type ResponderAgentType = ReturnType<typeof createResponderAgent>;
|