From 6c12b580e36311ae068a7f87a0834e62bf178d04 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 19 Feb 2026 17:09:15 -0500 Subject: [PATCH] opencode: change models --- home-manager/progs/opencode.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/home-manager/progs/opencode.nix b/home-manager/progs/opencode.nix index a83b02d..dfc5ebe 100644 --- a/home-manager/progs/opencode.nix +++ b/home-manager/progs/opencode.nix @@ -7,23 +7,23 @@ }: let # what model should be used in place of haiku? - # glm 4.7-flash is an example - haiku-model = "anthropic/claude-haiku-4-5"; + haiku-model = "openrouter/z-ai/glm-5"; - opus-model = "anthropic/claude-opus-4-6"; + opus-model = "openrouter/z-ai/glm-5"; ohMyOpencodeConfig = { "$schema" = "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json"; agents = { sisyphus.model = opus-model; + sisyphus-junior.model = opus-model; oracle = { - model = "openrouter/openai/gpt-5.2"; + model = "openrouter/openai/gpt-5.2-codex"; variant = "high"; }; librarian.model = haiku-model; explore.model = haiku-model; - multimodal-looker.model = "anthropic/claude-sonnet-4-5"; + multimodal-looker.model = "openrouter/qwen/qwen3-vl-30b-a3b-thinking"; prometheus.model = opus-model; metis.model = opus-model; @@ -44,8 +44,7 @@ let variant = "max"; }; quick.model = haiku-model; - "unspecified-low".model = opus-model; - "unspecified-high".model = opus-model; + deep.model = opus-model; writing.model = "openrouter/google/gemini-3-flash-preview"; }; };