12 lines
408 B
TypeScript
12 lines
408 B
TypeScript
import type { OpenClawConfig } from "../config/config.js";
|
|
import { applyAgentDefaultPrimaryModel } from "./model-default.js";
|
|
|
|
export const GOOGLE_GEMINI_DEFAULT_MODEL = "google/gemini-3-pro-preview";
|
|
|
|
export function applyGoogleGeminiModelDefault(cfg: OpenClawConfig): {
|
|
next: OpenClawConfig;
|
|
changed: boolean;
|
|
} {
|
|
return applyAgentDefaultPrimaryModel({ cfg, model: GOOGLE_GEMINI_DEFAULT_MODEL });
|
|
}
|