Skip to content

Commit abee7f7

Browse files
committed
switch to new default model
1 parent 349e085 commit abee7f7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev/tools/controllerbuilder/pkg/commands/exportcsv/prompt.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ func RunPrompt(ctx context.Context, o *PromptOptions) error {
165165

166166
model := os.Getenv("LLM_MODEL")
167167
if model == "" {
168-
model = "gemini-2.0-pro-exp-02-05"
168+
model = "gemini-2.5-pro-exp-03-25"
169169
}
170170
log.Info("using model", "model", model)
171171

dev/tools/controllerbuilder/pkg/llm/gemini.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func BuildGeminiClient(ctx context.Context) (Client, error) {
4242

4343
return &GeminiClient{
4444
client: client,
45-
model: "gemini-2.0-pro-exp-02-05",
45+
model: "gemini-2.5-pro-exp-03-25",
4646
}, nil
4747
}
4848

dev/tools/controllerbuilder/pkg/llm/vertexai.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func BuildVertexAIClient(ctx context.Context, options ...GCPOptions) (*VertexAIC
7474
if err != nil {
7575
return nil, fmt.Errorf("building vertexai client: %w", err)
7676
}
77-
model := "gemini-2.0-pro-exp-02-05"
77+
model := "gemini-2.5-pro-exp-03-25"
7878
return &VertexAIClient{
7979
client: client,
8080
model: model,

0 commit comments

Comments
 (0)