From aece9ae379a20c42f13ebf5074b2f03e5a4fd7aa Mon Sep 17 00:00:00 2001 From: David Chen Date: Wed, 25 Mar 2026 12:17:40 -0700 Subject: [PATCH] opencode consult model update --- opencode/consult.json | 2 +- opencode/tool/consult.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"))