@langchain/google-genai 2.1.21 → 2.1.22
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 +2 -0
- package/dist/chat_models.cjs +1 -1
- package/dist/chat_models.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/chat_models.cjs
CHANGED
|
@@ -425,7 +425,7 @@ var ChatGoogleGenerativeAI = class extends _langchain_core_language_models_chat_
|
|
|
425
425
|
model: modelOrFields
|
|
426
426
|
} : modelOrFields;
|
|
427
427
|
super(fields);
|
|
428
|
-
this._addVersion("@langchain/google-genai", "2.1.
|
|
428
|
+
this._addVersion("@langchain/google-genai", "2.1.22");
|
|
429
429
|
this.model = fields.model.replace(/^models\//, "");
|
|
430
430
|
this.maxOutputTokens = fields.maxOutputTokens ?? this.maxOutputTokens;
|
|
431
431
|
if (this.maxOutputTokens && this.maxOutputTokens < 0) throw new Error("`maxOutputTokens` must be a positive integer");
|
package/dist/chat_models.js
CHANGED
|
@@ -425,7 +425,7 @@ var ChatGoogleGenerativeAI = class extends BaseChatModel {
|
|
|
425
425
|
model: modelOrFields
|
|
426
426
|
} : modelOrFields;
|
|
427
427
|
super(fields);
|
|
428
|
-
this._addVersion("@langchain/google-genai", "2.1.
|
|
428
|
+
this._addVersion("@langchain/google-genai", "2.1.22");
|
|
429
429
|
this.model = fields.model.replace(/^models\//, "");
|
|
430
430
|
this.maxOutputTokens = fields.maxOutputTokens ?? this.maxOutputTokens;
|
|
431
431
|
if (this.maxOutputTokens && this.maxOutputTokens < 0) throw new Error("`maxOutputTokens` must be a positive integer");
|