@n8n/n8n-nodes-langchain 1.51.1 → 1.53.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/build.tsbuildinfo +1 -1
- package/dist/known/nodes.json +8 -0
- package/dist/nodes/agents/Agent/Agent.node.js +16 -9
- package/dist/nodes/agents/Agent/Agent.node.js.map +1 -1
- package/dist/nodes/chains/ChainLLM/ChainLlm.node.js +1 -1
- package/dist/nodes/chains/ChainLLM/ChainLlm.node.js.map +1 -1
- package/dist/nodes/chains/InformationExtractor/InformationExtractor.node.d.ts +5 -0
- package/dist/nodes/chains/InformationExtractor/InformationExtractor.node.js +266 -0
- package/dist/nodes/chains/InformationExtractor/InformationExtractor.node.js.map +1 -0
- package/dist/nodes/chains/InformationExtractor/helpers.d.ts +7 -0
- package/dist/nodes/chains/InformationExtractor/helpers.js +34 -0
- package/dist/nodes/chains/InformationExtractor/helpers.js.map +1 -0
- package/dist/nodes/chains/InformationExtractor/types.d.ts +6 -0
- package/dist/nodes/chains/InformationExtractor/types.js +3 -0
- package/dist/nodes/chains/InformationExtractor/types.js.map +1 -0
- package/dist/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.d.ts +5 -0
- package/dist/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.js +211 -0
- package/dist/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.js.map +1 -0
- package/dist/nodes/chains/TextClassifier/TextClassifier.node.js +29 -13
- package/dist/nodes/chains/TextClassifier/TextClassifier.node.js.map +1 -1
- package/dist/nodes/llms/LMChatAnthropic/LmChatAnthropic.node.js +1 -0
- package/dist/nodes/llms/LMChatAnthropic/LmChatAnthropic.node.js.map +1 -1
- package/dist/nodes/llms/LMChatOllama/LmChatOllama.node.js +2 -1
- package/dist/nodes/llms/LMChatOllama/LmChatOllama.node.js.map +1 -1
- package/dist/nodes/llms/LMChatOpenAi/LmChatOpenAi.node.js +1 -0
- package/dist/nodes/llms/LMChatOpenAi/LmChatOpenAi.node.js.map +1 -1
- package/dist/nodes/llms/LMCohere/LmCohere.node.js +1 -0
- package/dist/nodes/llms/LMCohere/LmCohere.node.js.map +1 -1
- package/dist/nodes/llms/LMOllama/LmOllama.node.js +1 -0
- package/dist/nodes/llms/LMOllama/LmOllama.node.js.map +1 -1
- package/dist/nodes/llms/LMOpenAi/LmOpenAi.node.js +8 -2
- package/dist/nodes/llms/LMOpenAi/LmOpenAi.node.js.map +1 -1
- package/dist/nodes/llms/LMOpenHuggingFaceInference/LmOpenHuggingFaceInference.node.js +1 -0
- package/dist/nodes/llms/LMOpenHuggingFaceInference/LmOpenHuggingFaceInference.node.js.map +1 -1
- package/dist/nodes/llms/LmChatAwsBedrock/LmChatAwsBedrock.node.js +1 -0
- package/dist/nodes/llms/LmChatAwsBedrock/LmChatAwsBedrock.node.js.map +1 -1
- package/dist/nodes/llms/LmChatAzureOpenAi/LmChatAzureOpenAi.node.js +1 -0
- package/dist/nodes/llms/LmChatAzureOpenAi/LmChatAzureOpenAi.node.js.map +1 -1
- package/dist/nodes/llms/LmChatGoogleGemini/LmChatGoogleGemini.node.js +1 -0
- package/dist/nodes/llms/LmChatGoogleGemini/LmChatGoogleGemini.node.js.map +1 -1
- package/dist/nodes/llms/LmChatGooglePalm/LmChatGooglePalm.node.js +8 -2
- package/dist/nodes/llms/LmChatGooglePalm/LmChatGooglePalm.node.js.map +1 -1
- package/dist/nodes/llms/LmChatGoogleVertex/LmChatGoogleVertex.node.js +2 -1
- package/dist/nodes/llms/LmChatGoogleVertex/LmChatGoogleVertex.node.js.map +1 -1
- package/dist/nodes/llms/LmChatGroq/LmChatGroq.node.js +1 -0
- package/dist/nodes/llms/LmChatGroq/LmChatGroq.node.js.map +1 -1
- package/dist/nodes/llms/LmChatMistralCloud/LmChatMistralCloud.node.js +1 -0
- package/dist/nodes/llms/LmChatMistralCloud/LmChatMistralCloud.node.js.map +1 -1
- package/dist/nodes/llms/LmGooglePalm/LmGooglePalm.node.js +8 -2
- package/dist/nodes/llms/LmGooglePalm/LmGooglePalm.node.js.map +1 -1
- package/dist/nodes/tools/ToolCalculator/ToolCalculator.node.js +1 -0
- package/dist/nodes/tools/ToolCalculator/ToolCalculator.node.js.map +1 -1
- package/dist/nodes/tools/ToolCode/ToolCode.node.js +3 -2
- package/dist/nodes/tools/ToolCode/ToolCode.node.js.map +1 -1
- package/dist/nodes/tools/ToolHttpRequest/ToolHttpRequest.node.js +1 -0
- package/dist/nodes/tools/ToolHttpRequest/ToolHttpRequest.node.js.map +1 -1
- package/dist/nodes/tools/ToolSerpApi/ToolSerpApi.node.js +1 -0
- package/dist/nodes/tools/ToolSerpApi/ToolSerpApi.node.js.map +1 -1
- package/dist/nodes/tools/ToolVectorStore/ToolVectorStore.node.js +1 -0
- package/dist/nodes/tools/ToolVectorStore/ToolVectorStore.node.js.map +1 -1
- package/dist/nodes/tools/ToolWikipedia/ToolWikipedia.node.js +1 -0
- package/dist/nodes/tools/ToolWikipedia/ToolWikipedia.node.js.map +1 -1
- package/dist/nodes/tools/ToolWolframAlpha/ToolWolframAlpha.node.js +1 -0
- package/dist/nodes/tools/ToolWolframAlpha/ToolWolframAlpha.node.js.map +1 -1
- package/dist/nodes/tools/ToolWorkflow/ToolWorkflow.node.js +3 -2
- package/dist/nodes/tools/ToolWorkflow/ToolWorkflow.node.js.map +1 -1
- package/dist/nodes/vector_store/VectorStorePinecone/VectorStorePinecone.node.js +10 -17
- package/dist/nodes/vector_store/VectorStorePinecone/VectorStorePinecone.node.js.map +1 -1
- package/dist/nodes/vector_store/VectorStoreSupabase/VectorStoreSupabase.node.js +12 -19
- package/dist/nodes/vector_store/VectorStoreSupabase/VectorStoreSupabase.node.js.map +1 -1
- package/dist/nodes/vector_store/shared/createVectorStoreNode.d.ts +3 -0
- package/dist/nodes/vector_store/shared/createVectorStoreNode.js +85 -23
- package/dist/nodes/vector_store/shared/createVectorStoreNode.js.map +1 -1
- package/dist/types/nodes.json +32 -30
- package/dist/utils/helpers.js +1 -1
- package/dist/utils/helpers.js.map +1 -1
- package/dist/utils/logWrapper.d.ts +1 -1
- package/package.json +23 -20
package/dist/utils/helpers.js
CHANGED
|
@@ -20,7 +20,7 @@ function hasMethods(obj, ...methodNames) {
|
|
|
20
20
|
typeof obj[methodName] === 'function');
|
|
21
21
|
}
|
|
22
22
|
function getMetadataFiltersValues(ctx, itemIndex) {
|
|
23
|
-
const options = ctx.getNodeParameter('options', itemIndex);
|
|
23
|
+
const options = ctx.getNodeParameter('options', itemIndex, {});
|
|
24
24
|
if (options.metadata) {
|
|
25
25
|
const { metadataValues: metadata } = options.metadata;
|
|
26
26
|
if (metadata.length > 0) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../utils/helpers.ts"],"names":[],"mappings":";;;AAyBA,4DAyBC;AAED,4CAEC;AAED,4DAEC;AAED,wCAIC;AAED,0CAIC;AAED,4DAaC;AAED,oDAwBC;AAED,oCAuCC;AAED,gCAUC;AAED,oDAYC;AAlLD,+CAAqF;AAUrF,iDAA+D;AAK/D,SAAS,UAAU,CAAI,GAAY,EAAE,GAAG,WAAmC;IAC1E,OAAO,WAAW,CAAC,KAAK,CACvB,CAAC,UAAU,EAAE,EAAE,CACd,OAAO,GAAG,KAAK,QAAQ;QACvB,GAAG,KAAK,IAAI;QACZ,UAAU,IAAI,GAAG;QACjB,OAAQ,GAAwC,CAAC,UAAU,CAAC,KAAK,UAAU,CAC5E,CAAC;AACH,CAAC;AAED,SAAgB,wBAAwB,CACvC,GAAsB,EACtB,SAAiB;IAEjB,MAAM,OAAO,GAAG,GAAG,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../utils/helpers.ts"],"names":[],"mappings":"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"}
|
|
@@ -25,4 +25,4 @@ export declare function callMethodSync<T>(this: T, parameters: {
|
|
|
25
25
|
method: (...args: any[]) => T;
|
|
26
26
|
arguments: unknown[];
|
|
27
27
|
}): unknown;
|
|
28
|
-
export declare function logWrapper(originalInstance: Tool | BaseChatMemory | BaseChatMessageHistory | BaseOutputParser | BaseRetriever | Embeddings | Document[] | Document | BaseDocumentLoader | TextSplitter | VectorStore | N8nBinaryLoader | N8nJsonLoader, executeFunctions: IExecuteFunctions): BaseChatMessageHistory | Tool | BaseOutputParser<unknown> |
|
|
28
|
+
export declare function logWrapper(originalInstance: Tool | BaseChatMemory | BaseChatMessageHistory | BaseOutputParser | BaseRetriever | Embeddings | Document[] | Document | BaseDocumentLoader | TextSplitter | VectorStore | N8nBinaryLoader | N8nJsonLoader, executeFunctions: IExecuteFunctions): BaseChatMemory | BaseChatMessageHistory | Tool | BaseOutputParser<unknown> | BaseRetriever<Record<string, any>> | N8nJsonLoader | TextSplitter | Document<Record<string, any>> | Document<Record<string, any>>[] | BaseDocumentLoader | N8nBinaryLoader | Embeddings | VectorStore;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/n8n-nodes-langchain",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.53.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -34,6 +34,8 @@
|
|
|
34
34
|
"dist/nodes/chains/ChainSummarization/ChainSummarization.node.js",
|
|
35
35
|
"dist/nodes/chains/ChainLLM/ChainLlm.node.js",
|
|
36
36
|
"dist/nodes/chains/ChainRetrievalQA/ChainRetrievalQa.node.js",
|
|
37
|
+
"dist/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.js",
|
|
38
|
+
"dist/nodes/chains/InformationExtractor/InformationExtractor.node.js",
|
|
37
39
|
"dist/nodes/chains/TextClassifier/TextClassifier.node.js",
|
|
38
40
|
"dist/nodes/code/Code.node.js",
|
|
39
41
|
"dist/nodes/document_loaders/DocumentDefaultDataLoader/DocumentDefaultDataLoader.node.js",
|
|
@@ -113,34 +115,35 @@
|
|
|
113
115
|
"@types/html-to-text": "^9.0.1",
|
|
114
116
|
"@types/json-schema": "^7.0.15",
|
|
115
117
|
"@types/temp": "^0.9.1",
|
|
116
|
-
"n8n-core": "1.
|
|
118
|
+
"n8n-core": "1.53.0"
|
|
117
119
|
},
|
|
118
120
|
"dependencies": {
|
|
119
121
|
"@aws-sdk/client-bedrock-runtime": "3.535.0",
|
|
120
122
|
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
121
|
-
"@getzep/zep-cloud": "1.0.
|
|
123
|
+
"@getzep/zep-cloud": "1.0.11",
|
|
122
124
|
"@getzep/zep-js": "0.9.0",
|
|
123
125
|
"@google-ai/generativelanguage": "2.5.0",
|
|
124
126
|
"@google-cloud/resource-manager": "5.3.0",
|
|
125
127
|
"@google/generative-ai": "0.11.4",
|
|
126
128
|
"@huggingface/inference": "2.7.0",
|
|
127
|
-
"@langchain/anthropic": "0.
|
|
129
|
+
"@langchain/anthropic": "0.2.9",
|
|
128
130
|
"@langchain/cohere": "0.0.10",
|
|
129
|
-
"@langchain/community": "0.2.
|
|
130
|
-
"@langchain/core": "0.2.
|
|
131
|
-
"@langchain/google-genai": "0.0.
|
|
132
|
-
"@langchain/google-vertexai": "0.0.
|
|
133
|
-
"@langchain/groq": "0.0.
|
|
134
|
-
"@langchain/mistralai": "0.0.
|
|
135
|
-
"@langchain/
|
|
136
|
-
"@langchain/
|
|
131
|
+
"@langchain/community": "0.2.20",
|
|
132
|
+
"@langchain/core": "0.2.18",
|
|
133
|
+
"@langchain/google-genai": "0.0.23",
|
|
134
|
+
"@langchain/google-vertexai": "0.0.21",
|
|
135
|
+
"@langchain/groq": "0.0.15",
|
|
136
|
+
"@langchain/mistralai": "0.0.27",
|
|
137
|
+
"@langchain/ollama": "^0.0.2",
|
|
138
|
+
"@langchain/openai": "0.2.5",
|
|
139
|
+
"@langchain/pinecone": "0.0.8",
|
|
137
140
|
"@langchain/qdrant": "^0.0.5",
|
|
138
141
|
"@langchain/redis": "0.0.5",
|
|
139
|
-
"@langchain/textsplitters": "0.0.
|
|
142
|
+
"@langchain/textsplitters": "0.0.3",
|
|
140
143
|
"@mozilla/readability": "^0.5.0",
|
|
141
144
|
"@n8n/typeorm": "0.3.20-10",
|
|
142
|
-
"@n8n/vm2": "3.9.
|
|
143
|
-
"@pinecone-database/pinecone": "
|
|
145
|
+
"@n8n/vm2": "3.9.24",
|
|
146
|
+
"@pinecone-database/pinecone": "3.0.0",
|
|
144
147
|
"@qdrant/js-client-rest": "1.9.0",
|
|
145
148
|
"@supabase/supabase-js": "2.43.4",
|
|
146
149
|
"@types/pg": "^8.11.3",
|
|
@@ -155,10 +158,10 @@
|
|
|
155
158
|
"html-to-text": "9.0.5",
|
|
156
159
|
"jsdom": "^23.0.1",
|
|
157
160
|
"json-schema-to-zod": "2.1.0",
|
|
158
|
-
"langchain": "0.2.
|
|
161
|
+
"langchain": "0.2.11",
|
|
159
162
|
"lodash": "4.17.21",
|
|
160
163
|
"mammoth": "1.7.2",
|
|
161
|
-
"openai": "4.
|
|
164
|
+
"openai": "4.53.0",
|
|
162
165
|
"pdf-parse": "1.1.1",
|
|
163
166
|
"pg": "8.11.3",
|
|
164
167
|
"redis": "4.6.12",
|
|
@@ -167,8 +170,8 @@
|
|
|
167
170
|
"tmp-promise": "3.0.3",
|
|
168
171
|
"zod": "3.23.8",
|
|
169
172
|
"zod-to-json-schema": "3.23.0",
|
|
170
|
-
"n8n-workflow": "1.
|
|
171
|
-
"n8n-nodes-base": "1.
|
|
173
|
+
"n8n-workflow": "1.52.0",
|
|
174
|
+
"n8n-nodes-base": "1.53.0"
|
|
172
175
|
},
|
|
173
176
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
174
177
|
"homepage": "https://n8n.io",
|
|
@@ -187,7 +190,7 @@
|
|
|
187
190
|
"build": "tsc -p tsconfig.build.json && pnpm n8n-copy-icons && pnpm build:metadata",
|
|
188
191
|
"build:metadata": "pnpm n8n-generate-known && pnpm n8n-generate-ui-types",
|
|
189
192
|
"format": "prettier nodes credentials --write",
|
|
190
|
-
"lint": "eslint nodes credentials",
|
|
193
|
+
"lint": "eslint nodes credentials --quiet",
|
|
191
194
|
"lintfix": "eslint nodes credentials --fix",
|
|
192
195
|
"watch": "tsc-watch -p tsconfig.build.json --onCompilationComplete \"tsc-alias -p tsconfig.build.json\" --onSuccess \"pnpm n8n-generate-ui-types\"",
|
|
193
196
|
"test": "jest",
|