@langchain/google-vertexai 2.1.21 → 2.1.23

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @langchain/google-vertexai
2
2
 
3
+ ## 2.1.23
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @langchain/google-gauth@2.1.23
9
+
10
+ ## 2.1.22
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies []:
15
+ - @langchain/google-gauth@2.1.22
16
+
3
17
  ## 2.1.21
4
18
 
5
19
  ### Patch Changes
@@ -301,7 +301,7 @@ var ChatVertexAI = class extends _langchain_google_gauth.ChatGoogle {
301
301
  ...fields,
302
302
  platformType: "gcp"
303
303
  });
304
- this._addVersion("@langchain/google-vertexai", "2.1.21");
304
+ this._addVersion("@langchain/google-vertexai", "2.1.23");
305
305
  }
306
306
  };
307
307
 
@@ -301,7 +301,7 @@ var ChatVertexAI = class extends ChatGoogle {
301
301
  ...fields,
302
302
  platformType: "gcp"
303
303
  });
304
- this._addVersion("@langchain/google-vertexai", "2.1.21");
304
+ this._addVersion("@langchain/google-vertexai", "2.1.23");
305
305
  }
306
306
  };
307
307
 
package/dist/llms.cjs CHANGED
@@ -19,7 +19,7 @@ var VertexAI = class extends _langchain_google_gauth.GoogleLLM {
19
19
  ...fields,
20
20
  platformType: "gcp"
21
21
  });
22
- this._addVersion("@langchain/google-vertexai", "2.1.21");
22
+ this._addVersion("@langchain/google-vertexai", "2.1.23");
23
23
  }
24
24
  };
25
25
 
package/dist/llms.js CHANGED
@@ -19,7 +19,7 @@ var VertexAI = class extends GoogleLLM {
19
19
  ...fields,
20
20
  platformType: "gcp"
21
21
  });
22
- this._addVersion("@langchain/google-vertexai", "2.1.21");
22
+ this._addVersion("@langchain/google-vertexai", "2.1.23");
23
23
  }
24
24
  };
25
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-vertexai",
3
- "version": "2.1.21",
3
+ "version": "2.1.23",
4
4
  "description": "LangChain.js support for Google Vertex AI",
5
5
  "author": "LangChain",
6
6
  "license": "MIT",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-vertexai/",
16
16
  "dependencies": {
17
- "@langchain/google-gauth": "2.1.21"
17
+ "@langchain/google-gauth": "2.1.23"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@jest/globals": "^30.2.0",
@@ -31,9 +31,9 @@
31
31
  "typescript": "~5.8.3",
32
32
  "zod": "^3.25.76",
33
33
  "@langchain/eslint": "0.1.1",
34
- "@langchain/google-common": "2.1.21",
35
- "@langchain/tsconfig": "0.0.1",
36
- "@langchain/standard-tests": "0.0.23"
34
+ "@langchain/google-common": "2.1.23",
35
+ "@langchain/standard-tests": "0.0.23",
36
+ "@langchain/tsconfig": "0.0.1"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
@@ -102,7 +102,7 @@
102
102
  "test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
103
103
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
104
104
  "test:single": "NODE_OPTIONS=--experimental-vm-modules pnpm run jest --config jest.config.cjs --testTimeout 100000",
105
- "test:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
105
+ "test:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPatterns=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
106
106
  "format": "prettier --write \"src\"",
107
107
  "format:check": "prettier --check \"src\""
108
108
  }