2026-01-30 03:15:10 +01:00
|
|
|
import type { OpenClawConfig } from "../config/config.js";
|
2026-02-15 17:41:14 +00:00
|
|
|
import { applyAgentDefaultPrimaryModel } from "./model-default.js";
|
2026-01-09 02:49:42 +01:00
|
|
|
|
|
|
|
|
export const GOOGLE_GEMINI_DEFAULT_MODEL = "google/gemini-3-pro-preview";
|
|
|
|
|
|
2026-01-30 03:15:10 +01:00
|
|
|
export function applyGoogleGeminiModelDefault(cfg: OpenClawConfig): {
|
|
|
|
|
next: OpenClawConfig;
|
2026-01-09 02:49:42 +01:00
|
|
|
changed: boolean;
|
|
|
|
|
} {
|
2026-02-15 17:41:14 +00:00
|
|
|
return applyAgentDefaultPrimaryModel({ cfg, model: GOOGLE_GEMINI_DEFAULT_MODEL });
|
2026-01-09 02:49:42 +01:00
|
|
|
}
|