diff --git a/opencode/consult.json b/opencode/consult.json index 444cf69..f1e4e09 100644 --- a/opencode/consult.json +++ b/opencode/consult.json @@ -1,3 +1,3 @@ { - "model": "google/gemini-3-pro-preview" + "model": "google/gemini-3.1-pro-preview" } diff --git a/opencode/tool/consult.ts b/opencode/tool/consult.ts index c0832be..fe636e3 100644 --- a/opencode/tool/consult.ts +++ b/opencode/tool/consult.ts @@ -17,7 +17,7 @@ export default tool({ .describe("What you want the other model to weigh in on"), }, async execute(args) { - let model = "google/gemini-3-pro-preview" + let model = "google/gemini-3.1-pro-preview" try { const configPath = join(homedir(), ".config/opencode/consult.json") const config = JSON.parse(readFileSync(configPath, "utf-8"))