Skip to content

Commit 091c7f0

Browse files
authored
Update code model defaults for code-gecko in GoogleVertexAI (langchain-ai#2153)
1 parent 186e909 commit 091c7f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

langchain/src/llms/googlevertexai.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class GoogleVertexAI extends BaseLLM implements GoogleVertexAITextInput {
6767
this.model = fields?.model ?? this.model;
6868

6969
// Change the defaults for code models
70-
if (this.model === "code-gecko") {
70+
if (this.model.startsWith("code-gecko")) {
7171
this.maxOutputTokens = 64;
7272
}
7373
if (this.model.startsWith("code-")) {

0 commit comments

Comments
 (0)