@langchain/google-vertexai-web 2.1.26 → 2.1.28
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 +14 -0
- package/README.md +1 -4
- package/dist/chat_models.cjs +1 -1
- package/dist/chat_models.js +1 -1
- package/dist/llms.cjs +1 -1
- package/dist/llms.js +1 -1
- package/package.json +6 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @langchain/google-vertexai-web
|
|
2
2
|
|
|
3
|
+
## 2.1.28
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies []:
|
|
8
|
+
- @langchain/google-webauth@2.1.28
|
|
9
|
+
|
|
10
|
+
## 2.1.27
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies []:
|
|
15
|
+
- @langchain/google-webauth@2.1.27
|
|
16
|
+
|
|
3
17
|
## 2.1.26
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -8,17 +8,15 @@ that are included in an environment variable.
|
|
|
8
8
|
If you are running this on the Google Cloud Platform, or in a way
|
|
9
9
|
where service account credentials can be stored on a file system,
|
|
10
10
|
consider using the @langchain/google-vertexai
|
|
11
|
-
package
|
|
11
|
+
package _instead_. You do not need to use both packages. See the
|
|
12
12
|
section on **Authorization** below.
|
|
13
13
|
|
|
14
|
-
|
|
15
14
|
## Installation
|
|
16
15
|
|
|
17
16
|
```bash
|
|
18
17
|
$ pnpm install @langchain/google-vertexai-web
|
|
19
18
|
```
|
|
20
19
|
|
|
21
|
-
|
|
22
20
|
## Authorization
|
|
23
21
|
|
|
24
22
|
Authorization is done through a Google Cloud Service Account.
|
|
@@ -35,4 +33,3 @@ credentials from the first of the following that apply:
|
|
|
35
33
|
`GOOGLE_WEB_CREDENTIALS`
|
|
36
34
|
5. The Service Account credentials that are saved directly into the
|
|
37
35
|
`GOOGLE_VERTEX_AI_WEB_CREDENTIALS` (deprecated)
|
|
38
|
-
|
package/dist/chat_models.cjs
CHANGED
|
@@ -303,7 +303,7 @@ var ChatVertexAI = class extends _langchain_google_webauth.ChatGoogle {
|
|
|
303
303
|
...fields,
|
|
304
304
|
platformType: "gcp"
|
|
305
305
|
});
|
|
306
|
-
this._addVersion("@langchain/google-vertexai-web", "2.1.
|
|
306
|
+
this._addVersion("@langchain/google-vertexai-web", "2.1.28");
|
|
307
307
|
}
|
|
308
308
|
};
|
|
309
309
|
//#endregion
|
package/dist/chat_models.js
CHANGED
|
@@ -303,7 +303,7 @@ var ChatVertexAI = class extends ChatGoogle {
|
|
|
303
303
|
...fields,
|
|
304
304
|
platformType: "gcp"
|
|
305
305
|
});
|
|
306
|
-
this._addVersion("@langchain/google-vertexai-web", "2.1.
|
|
306
|
+
this._addVersion("@langchain/google-vertexai-web", "2.1.28");
|
|
307
307
|
}
|
|
308
308
|
};
|
|
309
309
|
//#endregion
|
package/dist/llms.cjs
CHANGED
|
@@ -18,7 +18,7 @@ var VertexAI = class extends _langchain_google_webauth.GoogleLLM {
|
|
|
18
18
|
...fields,
|
|
19
19
|
platformType: "gcp"
|
|
20
20
|
});
|
|
21
|
-
this._addVersion("@langchain/google-vertexai-web", "2.1.
|
|
21
|
+
this._addVersion("@langchain/google-vertexai-web", "2.1.28");
|
|
22
22
|
}
|
|
23
23
|
};
|
|
24
24
|
//#endregion
|
package/dist/llms.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/google-vertexai-web",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.28",
|
|
4
4
|
"description": "LangChain.js support for Google Vertex AI Web",
|
|
5
5
|
"author": "LangChain",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,19 +14,16 @@
|
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/providers/langchain-google-vertexai-web/",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@langchain/google-webauth": "2.1.
|
|
17
|
+
"@langchain/google-webauth": "2.1.28"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@tsconfig/recommended": "^1.0.3",
|
|
21
|
-
"dotenv": "^
|
|
21
|
+
"dotenv": "^17.4.0",
|
|
22
22
|
"dpdm": "^3.14.0",
|
|
23
|
-
"eslint": "^9.34.0",
|
|
24
|
-
"prettier": "^3.5.0",
|
|
25
23
|
"typescript": "~5.8.3",
|
|
26
|
-
"vitest": "^
|
|
24
|
+
"vitest": "^4.1.2",
|
|
27
25
|
"zod": "^3.25.76",
|
|
28
|
-
"@langchain/
|
|
29
|
-
"@langchain/google-common": "2.1.26",
|
|
26
|
+
"@langchain/google-common": "2.1.28",
|
|
30
27
|
"@langchain/standard-tests": "0.0.23",
|
|
31
28
|
"@langchain/tsconfig": "0.0.1"
|
|
32
29
|
},
|
|
@@ -81,16 +78,10 @@
|
|
|
81
78
|
"scripts": {
|
|
82
79
|
"build": "turbo build:compile --filter @langchain/google-vertexai-web --output-logs new-only",
|
|
83
80
|
"build:compile": "tsdown",
|
|
84
|
-
"lint:eslint": "eslint --cache src/",
|
|
85
|
-
"lint:dpdm": "dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
86
|
-
"lint": "pnpm lint:eslint && pnpm lint:dpdm",
|
|
87
|
-
"lint:fix": "pnpm lint:eslint --fix && pnpm lint:dpdm",
|
|
88
81
|
"clean": "rm -rf .turbo dist/",
|
|
89
82
|
"test": "vitest run",
|
|
90
83
|
"test:watch": "vitest",
|
|
91
84
|
"test:single": "vitest run",
|
|
92
|
-
"test:int": "vitest run --mode int"
|
|
93
|
-
"format": "prettier --write \"src\"",
|
|
94
|
-
"format:check": "prettier --check \"src\""
|
|
85
|
+
"test:int": "vitest run --mode int"
|
|
95
86
|
}
|
|
96
87
|
}
|