@n8n/n8n-nodes-langchain 1.76.1 → 1.77.1

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.
Files changed (48) hide show
  1. package/dist/build.tsbuildinfo +1 -1
  2. package/dist/credentials/DeepSeekApi.credentials.d.ts +9 -0
  3. package/dist/credentials/DeepSeekApi.credentials.js +42 -0
  4. package/dist/credentials/DeepSeekApi.credentials.js.map +1 -0
  5. package/dist/credentials/OpenRouterApi.credentials.d.ts +9 -0
  6. package/dist/credentials/OpenRouterApi.credentials.js +42 -0
  7. package/dist/credentials/OpenRouterApi.credentials.js.map +1 -0
  8. package/dist/known/credentials.json +14 -0
  9. package/dist/known/nodes.json +8 -0
  10. package/dist/nodes/agents/Agent/Agent.node.js +4 -0
  11. package/dist/nodes/agents/Agent/Agent.node.js.map +1 -1
  12. package/dist/nodes/llms/LMChatOpenAi/LmChatOpenAi.node.js +1 -1
  13. package/dist/nodes/llms/LmChatDeepSeek/LmChatDeepSeek.node.d.ts +5 -0
  14. package/dist/nodes/llms/LmChatDeepSeek/LmChatDeepSeek.node.js +222 -0
  15. package/dist/nodes/llms/LmChatDeepSeek/LmChatDeepSeek.node.js.map +1 -0
  16. package/dist/nodes/llms/LmChatDeepSeek/deepseek.svg +1 -0
  17. package/dist/nodes/llms/LmChatOpenRouter/LmChatOpenRouter.node.d.ts +5 -0
  18. package/dist/nodes/llms/LmChatOpenRouter/LmChatOpenRouter.node.js +222 -0
  19. package/dist/nodes/llms/LmChatOpenRouter/LmChatOpenRouter.node.js.map +1 -0
  20. package/dist/nodes/llms/LmChatOpenRouter/openrouter.dark.svg +1 -0
  21. package/dist/nodes/llms/LmChatOpenRouter/openrouter.svg +1 -0
  22. package/dist/nodes/tools/ToolWorkflow/v2/ToolWorkflowV2.node.d.ts +2 -4
  23. package/dist/nodes/tools/ToolWorkflow/v2/ToolWorkflowV2.node.js +2 -4
  24. package/dist/nodes/tools/ToolWorkflow/v2/ToolWorkflowV2.node.js.map +1 -1
  25. package/dist/nodes/tools/ToolWorkflow/v2/methods/index.d.ts +1 -0
  26. package/dist/nodes/tools/ToolWorkflow/v2/methods/index.js +38 -0
  27. package/dist/nodes/tools/ToolWorkflow/v2/methods/index.js.map +1 -0
  28. package/dist/nodes/tools/ToolWorkflow/v2/methods/localResourceMapping.d.ts +2 -0
  29. package/dist/nodes/tools/ToolWorkflow/v2/methods/localResourceMapping.js +23 -0
  30. package/dist/nodes/tools/ToolWorkflow/v2/methods/localResourceMapping.js.map +1 -0
  31. package/dist/nodes/tools/ToolWorkflow/v2/versionDescription.js +1 -1
  32. package/dist/nodes/tools/ToolWorkflow/v2/versionDescription.js.map +1 -1
  33. package/dist/nodes/vector_store/VectorStoreInMemory/VectorStoreInMemory.node.js.map +1 -1
  34. package/dist/nodes/vector_store/VectorStorePGVector/VectorStorePGVector.node.js +5 -1
  35. package/dist/nodes/vector_store/VectorStorePGVector/VectorStorePGVector.node.js.map +1 -1
  36. package/dist/nodes/vector_store/VectorStorePinecone/VectorStorePinecone.node.js.map +1 -1
  37. package/dist/nodes/vector_store/VectorStoreQdrant/VectorStoreQdrant.node.js.map +1 -1
  38. package/dist/nodes/vector_store/VectorStoreSupabase/VectorStoreSupabase.node.js.map +1 -1
  39. package/dist/nodes/vector_store/VectorStoreZep/VectorStoreZep.node.js.map +1 -1
  40. package/dist/nodes/vector_store/shared/createVectorStoreNode.d.ts +4 -3
  41. package/dist/nodes/vector_store/shared/createVectorStoreNode.js +58 -40
  42. package/dist/nodes/vector_store/shared/createVectorStoreNode.js.map +1 -1
  43. package/dist/types/credentials.json +2 -0
  44. package/dist/types/nodes.json +5 -3
  45. package/dist/types/types.d.ts +4 -0
  46. package/dist/types/types.js +2 -0
  47. package/dist/types/types.js.map +1 -0
  48. package/package.json +9 -5
@@ -0,0 +1,4 @@
1
+ type OpenAICompatibleCredential = {
2
+ apiKey: string;
3
+ url: string;
4
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../types/types.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n/n8n-nodes-langchain",
3
- "version": "1.76.1",
3
+ "version": "1.77.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -14,12 +14,14 @@
14
14
  "dist/credentials/AnthropicApi.credentials.js",
15
15
  "dist/credentials/AzureOpenAiApi.credentials.js",
16
16
  "dist/credentials/CohereApi.credentials.js",
17
+ "dist/credentials/DeepSeekApi.credentials.js",
17
18
  "dist/credentials/GooglePalmApi.credentials.js",
18
19
  "dist/credentials/GroqApi.credentials.js",
19
20
  "dist/credentials/HuggingFaceApi.credentials.js",
20
21
  "dist/credentials/MotorheadApi.credentials.js",
21
22
  "dist/credentials/MistralCloudApi.credentials.js",
22
23
  "dist/credentials/OllamaApi.credentials.js",
24
+ "dist/credentials/OpenRouterApi.credentials.js",
23
25
  "dist/credentials/PineconeApi.credentials.js",
24
26
  "dist/credentials/QdrantApi.credentials.js",
25
27
  "dist/credentials/SerpApi.credentials.js",
@@ -53,11 +55,13 @@
53
55
  "dist/nodes/llms/LMChatAnthropic/LmChatAnthropic.node.js",
54
56
  "dist/nodes/llms/LmChatAzureOpenAi/LmChatAzureOpenAi.node.js",
55
57
  "dist/nodes/llms/LmChatAwsBedrock/LmChatAwsBedrock.node.js",
58
+ "dist/nodes/llms/LmChatDeepSeek/LmChatDeepSeek.node.js",
56
59
  "dist/nodes/llms/LmChatGoogleGemini/LmChatGoogleGemini.node.js",
57
60
  "dist/nodes/llms/LmChatGoogleVertex/LmChatGoogleVertex.node.js",
58
61
  "dist/nodes/llms/LmChatGroq/LmChatGroq.node.js",
59
62
  "dist/nodes/llms/LmChatMistralCloud/LmChatMistralCloud.node.js",
60
63
  "dist/nodes/llms/LMChatOllama/LmChatOllama.node.js",
64
+ "dist/nodes/llms/LmChatOpenRouter/LmChatOpenRouter.node.js",
61
65
  "dist/nodes/llms/LMChatOpenAi/LmChatOpenAi.node.js",
62
66
  "dist/nodes/llms/LMOpenAi/LmOpenAi.node.js",
63
67
  "dist/nodes/llms/LMCohere/LmCohere.node.js",
@@ -115,7 +119,7 @@
115
119
  "@types/mime-types": "^2.1.0",
116
120
  "@types/pg": "^8.11.6",
117
121
  "@types/temp": "^0.9.1",
118
- "n8n-core": "1.76.2"
122
+ "n8n-core": "1.77.2"
119
123
  },
120
124
  "dependencies": {
121
125
  "@aws-sdk/client-sso-oidc": "3.666.0",
@@ -170,8 +174,8 @@
170
174
  "zod": "3.24.1",
171
175
  "zod-to-json-schema": "3.23.3",
172
176
  "@n8n/json-schema-to-zod": "1.2.0",
173
- "n8n-workflow": "1.75.1",
174
- "n8n-nodes-base": "1.76.1"
177
+ "n8n-workflow": "1.76.1",
178
+ "n8n-nodes-base": "1.77.1"
175
179
  },
176
180
  "license": "SEE LICENSE IN LICENSE.md",
177
181
  "homepage": "https://n8n.io",
@@ -187,7 +191,7 @@
187
191
  "clean": "rimraf dist .turbo",
188
192
  "dev": "pnpm run watch",
189
193
  "typecheck": "tsc --noEmit",
190
- "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && pnpm n8n-copy-icons && pnpm n8n-generate-metadata",
194
+ "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && pnpm n8n-copy-static-files && pnpm n8n-generate-metadata",
191
195
  "format": "biome format --write .",
192
196
  "format:check": "biome ci .",
193
197
  "lint": "eslint nodes credentials utils --quiet",