@atom8n/n8n-nodes-langchain 2.5.4 → 2.5.6
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/credentials/CursorAgentApi.credentials.js +65 -0
- package/dist/credentials/CursorAgentApi.credentials.js.map +1 -0
- package/dist/credentials/NineRouterApi.credentials.js +67 -0
- package/dist/credentials/NineRouterApi.credentials.js.map +1 -0
- package/dist/known/credentials.json +7 -0
- package/dist/known/nodes.json +8 -0
- package/dist/nodes/agents/Agent/V1/AgentV1.node.js +3 -1
- package/dist/nodes/agents/Agent/V1/AgentV1.node.js.map +1 -1
- package/dist/nodes/llms/LmChat9Router/9router.dark.svg +10 -0
- package/dist/nodes/llms/LmChat9Router/9router.svg +10 -0
- package/dist/nodes/llms/LmChat9Router/LmChat9Router.node.js +248 -0
- package/dist/nodes/llms/LmChat9Router/LmChat9Router.node.js.map +1 -0
- package/dist/nodes/llms/LmChatCursorAgent/LmChatCursorAgent.node.js +363 -0
- package/dist/nodes/llms/LmChatCursorAgent/LmChatCursorAgent.node.js.map +1 -0
- package/dist/nodes/llms/LmChatCursorAgent/cursorAgent.svg +1 -0
- package/dist/types/credentials.json +1 -0
- package/dist/types/nodes.json +3 -1
- package/package.json +14 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atom8n/n8n-nodes-langchain",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"dist/credentials/MistralCloudApi.credentials.js",
|
|
41
41
|
"dist/credentials/LemonadeApi.credentials.js",
|
|
42
42
|
"dist/credentials/OllamaApi.credentials.js",
|
|
43
|
+
"dist/credentials/NineRouterApi.credentials.js",
|
|
43
44
|
"dist/credentials/OpenRouterApi.credentials.js",
|
|
44
45
|
"dist/credentials/PineconeApi.credentials.js",
|
|
45
46
|
"dist/credentials/QdrantApi.credentials.js",
|
|
@@ -85,6 +86,7 @@
|
|
|
85
86
|
"dist/nodes/llms/LmChatAzureOpenAi/LmChatAzureOpenAi.node.js",
|
|
86
87
|
"dist/nodes/llms/LmChatAwsBedrock/LmChatAwsBedrock.node.js",
|
|
87
88
|
"dist/nodes/llms/LmChatCohere/LmChatCohere.node.js",
|
|
89
|
+
"dist/nodes/llms/LmChatCursorAgent/LmChatCursorAgent.node.js",
|
|
88
90
|
"dist/nodes/llms/LmChatDeepSeek/LmChatDeepSeek.node.js",
|
|
89
91
|
"dist/nodes/llms/LmChatGoogleGemini/LmChatGoogleGemini.node.js",
|
|
90
92
|
"dist/nodes/llms/LmChatGoogleVertex/LmChatGoogleVertex.node.js",
|
|
@@ -92,6 +94,7 @@
|
|
|
92
94
|
"dist/nodes/llms/LmChatMistralCloud/LmChatMistralCloud.node.js",
|
|
93
95
|
"dist/nodes/llms/LMChatLemonade/LmChatLemonade.node.js",
|
|
94
96
|
"dist/nodes/llms/LMChatOllama/LmChatOllama.node.js",
|
|
97
|
+
"dist/nodes/llms/LmChat9Router/LmChat9Router.node.js",
|
|
95
98
|
"dist/nodes/llms/LmChatOpenRouter/LmChatOpenRouter.node.js",
|
|
96
99
|
"dist/nodes/llms/LmChatVercelAiGateway/LmChatVercelAiGateway.node.js",
|
|
97
100
|
"dist/nodes/llms/LmChatXAiGrok/LmChatXAiGrok.node.js",
|
|
@@ -163,7 +166,7 @@
|
|
|
163
166
|
"nodeTypePrefix": "@n8n/n8n-nodes-langchain"
|
|
164
167
|
},
|
|
165
168
|
"devDependencies": {
|
|
166
|
-
"@n8n/eslint-plugin-community-nodes": "npm:@atom8n/eslint-plugin-community-nodes@0.10.
|
|
169
|
+
"@n8n/eslint-plugin-community-nodes": "npm:@atom8n/eslint-plugin-community-nodes@0.10.6",
|
|
167
170
|
"@types/basic-auth": "^1.1.3",
|
|
168
171
|
"@types/cheerio": "^0.22.15",
|
|
169
172
|
"@types/html-to-text": "^9.0.1",
|
|
@@ -174,7 +177,7 @@
|
|
|
174
177
|
"@types/temp": "^0.9.1",
|
|
175
178
|
"fast-glob": "3.2.12",
|
|
176
179
|
"jest-mock-extended": "^3.0.4",
|
|
177
|
-
"n8n-core": "npm:@atom8n/n8n-core@2.5.
|
|
180
|
+
"n8n-core": "npm:@atom8n/n8n-core@2.5.6",
|
|
178
181
|
"tsup": "^8.5.0"
|
|
179
182
|
},
|
|
180
183
|
"dependencies": {
|
|
@@ -206,13 +209,13 @@
|
|
|
206
209
|
"@langchain/weaviate": "1.0.1",
|
|
207
210
|
"@modelcontextprotocol/sdk": "1.24.0",
|
|
208
211
|
"@mozilla/readability": "0.6.0",
|
|
209
|
-
"@n8n/client-oauth2": "npm:@atom8n/client-oauth2@1.3.
|
|
210
|
-
"@n8n/config": "npm:@atom8n/config@2.4.
|
|
211
|
-
"@n8n/di": "npm:@atom8n/di@0.13.
|
|
212
|
-
"@n8n/errors": "npm:@atom8n/errors@0.8.
|
|
213
|
-
"@n8n/json-schema-to-zod": "npm:@atom8n/json-schema-to-zod@1.9.
|
|
212
|
+
"@n8n/client-oauth2": "npm:@atom8n/client-oauth2@1.3.6",
|
|
213
|
+
"@n8n/config": "npm:@atom8n/config@2.4.6",
|
|
214
|
+
"@n8n/di": "npm:@atom8n/di@0.13.6",
|
|
215
|
+
"@n8n/errors": "npm:@atom8n/errors@0.8.6",
|
|
216
|
+
"@n8n/json-schema-to-zod": "npm:@atom8n/json-schema-to-zod@1.9.6",
|
|
214
217
|
"@n8n/typeorm": "0.3.20-15",
|
|
215
|
-
"@n8n/typescript-config": "npm:@atom8n/typescript-config@1.6.
|
|
218
|
+
"@n8n/typescript-config": "npm:@atom8n/typescript-config@1.6.6",
|
|
216
219
|
"@n8n/vm2": "3.9.25",
|
|
217
220
|
"@pinecone-database/pinecone": "^5.0.2",
|
|
218
221
|
"@qdrant/js-client-rest": "^1.16.2",
|
|
@@ -237,8 +240,8 @@
|
|
|
237
240
|
"mammoth": "1.11.0",
|
|
238
241
|
"mime-types": "3.0.1",
|
|
239
242
|
"mongodb": "^6.17.0",
|
|
240
|
-
"n8n-nodes-base": "npm:@atom8n/n8n-nodes-base@2.5.
|
|
241
|
-
"n8n-workflow": "npm:@atom8n/n8n-workflow@2.5.
|
|
243
|
+
"n8n-nodes-base": "npm:@atom8n/n8n-nodes-base@2.5.6",
|
|
244
|
+
"n8n-workflow": "npm:@atom8n/n8n-workflow@2.5.6",
|
|
242
245
|
"openai": "^6.9.0",
|
|
243
246
|
"pdf-parse": "1.1.1",
|
|
244
247
|
"pg": "8.12.0",
|