We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 186e909 commit 091c7f0Copy full SHA for 091c7f0
langchain/src/llms/googlevertexai.ts
@@ -67,7 +67,7 @@ export class GoogleVertexAI extends BaseLLM implements GoogleVertexAITextInput {
67
this.model = fields?.model ?? this.model;
68
69
// Change the defaults for code models
70
- if (this.model === "code-gecko") {
+ if (this.model.startsWith("code-gecko")) {
71
this.maxOutputTokens = 64;
72
}
73
if (this.model.startsWith("code-")) {
0 commit comments