n8n-nodes-vercel-ai-sdk-universal-temp 0.3.2 → 0.3.3
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/nodes/UniversalAgent/UniversalAgent.node.d.ts +7 -1
- package/dist/nodes/UniversalAgent/UniversalAgent.node.js +572 -41
- package/dist/nodes/UniversalAgent/UniversalAgent.node.js.map +1 -1
- package/dist/nodes/shared/descriptions.js +364 -2177
- package/dist/nodes/shared/descriptions.js.map +1 -1
- package/package.json +1 -1
|
@@ -16,9 +16,15 @@ export declare class UniversalAgent implements INodeType {
|
|
|
16
16
|
private static buildChatOptions;
|
|
17
17
|
private static processChatResponse;
|
|
18
18
|
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
19
|
-
static processItem(exec: IExecuteFunctions, index: number, operation: 'chat' | 'createAgent' | 'manageAgent' | 'manageIdentity', item: INodeExecutionData): Promise<INodeExecutionData[]>;
|
|
19
|
+
static processItem(exec: IExecuteFunctions, index: number, operation: 'chat' | 'createAgent' | 'manageAgent' | 'listAgents' | 'manageIdentity' | 'tools' | 'blocks' | 'folders' | 'mcpServers' | 'models', item: INodeExecutionData): Promise<INodeExecutionData[]>;
|
|
20
20
|
private static handleChatOperation;
|
|
21
21
|
private static handleCreateAgentOperation;
|
|
22
22
|
private static handleManageAgentOperation;
|
|
23
|
+
private static handleListAgentsOperation;
|
|
23
24
|
private static handleManageIdentityOperation;
|
|
25
|
+
private static handleToolsOperation;
|
|
26
|
+
private static handleBlocksOperation;
|
|
27
|
+
private static handleFoldersOperation;
|
|
28
|
+
private static handleMcpServersOperation;
|
|
29
|
+
private static handleModelsOperation;
|
|
24
30
|
}
|