From 36ace5ee05c8f315a2b60f7345d5859a46dc9f85 Mon Sep 17 00:00:00 2001 From: Amolith Date: Mon, 22 Dec 2025 18:26:17 -0700 Subject: [PATCH] chore(agents): update fallback models Update fallback models from GLM-4.6 to GLM-4.7 and DeepSeek-V3.1-Terminus to MiniMax-M2 across all agent definitions (aider, claude, llxprt, qwen) in both fish and zsh implementations. Assisted-by: GLM 4.7 via Crush --- fish/functions/_synu_agents/aider.fish | 4 ++-- fish/functions/_synu_agents/claude.fish | 6 +++--- fish/functions/_synu_agents/llxprt.fish | 2 +- fish/functions/_synu_agents/qwen.fish | 2 +- zsh/functions/_synu_agents/aider.zsh | 4 ++-- zsh/functions/_synu_agents/claude.zsh | 6 +++--- zsh/functions/_synu_agents/llxprt.zsh | 2 +- zsh/functions/_synu_agents/qwen.zsh | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/fish/functions/_synu_agents/aider.fish b/fish/functions/_synu_agents/aider.fish index 14d97a7dd68fb4f2f1ff886b878eea9741ea61b0..c00323cfb0d19660fdaff9d5f7d1a62ddbfca138 100644 --- a/fish/functions/_synu_agents/aider.fish +++ b/fish/functions/_synu_agents/aider.fish @@ -10,8 +10,8 @@ source (status dirname)/../_synu_cache.fish # Fallback defaults (used when no cache entry exists) -set -g _synu_aider_fallback_model "hf:zai-org/GLM-4.6" -set -g _synu_aider_fallback_editor_model "hf:deepseek-ai/DeepSeek-V3.1-Terminus" +set -g _synu_aider_fallback_model "hf:zai-org/GLM-4.7" +set -g _synu_aider_fallback_editor_model "hf:deepseek-ai/MiniMax-M2" function _synu_aider_default --description "Get default model: _synu_aider_default slot" set -l slot $argv[1] diff --git a/fish/functions/_synu_agents/claude.fish b/fish/functions/_synu_agents/claude.fish index 2fe09270ad4a66d790e37e7ce70b0d06a90464ed..6d22434655fe1e37c08c1720a05aabaf6461218d 100644 --- a/fish/functions/_synu_agents/claude.fish +++ b/fish/functions/_synu_agents/claude.fish @@ -10,9 +10,9 @@ source (status dirname)/../_synu_cache.fish # Fallback defaults (used when no cache entry exists) set -g _synu_claude_fallback_opus "hf:moonshotai/Kimi-K2-Thinking" -set -g _synu_claude_fallback_sonnet "hf:zai-org/GLM-4.6" -set -g _synu_claude_fallback_haiku "hf:deepseek-ai/DeepSeek-V3.1-Terminus" -set -g _synu_claude_fallback_agent "hf:zai-org/GLM-4.6" +set -g _synu_claude_fallback_sonnet "hf:zai-org/GLM-4.7" +set -g _synu_claude_fallback_haiku "hf:deepseek-ai/MiniMax-M2" +set -g _synu_claude_fallback_agent "hf:zai-org/GLM-4.7" function _synu_claude_default --description "Get default model: _synu_claude_default slot" set -l slot $argv[1] diff --git a/fish/functions/_synu_agents/llxprt.fish b/fish/functions/_synu_agents/llxprt.fish index a3a5b8ed6ff8f2674023310af088d6781827c5b0..ecc06dc0480a8e06df272efef5ca9f0566b6dcb2 100644 --- a/fish/functions/_synu_agents/llxprt.fish +++ b/fish/functions/_synu_agents/llxprt.fish @@ -10,7 +10,7 @@ source (status dirname)/../_synu_cache.fish # Fallback default (used when no cache entry exists) -set -g _synu_llxprt_fallback_model "hf:zai-org/GLM-4.6" +set -g _synu_llxprt_fallback_model "hf:zai-org/GLM-4.7" function _synu_llxprt_default --description "Get default model" set -l cached (_synu_cache_get llxprt model) diff --git a/fish/functions/_synu_agents/qwen.fish b/fish/functions/_synu_agents/qwen.fish index 5f46dbe59f9a2e0230825b98393f4190be4cad85..060f8b9e22fc0170c9a8e335e76ea61c827e1ee4 100644 --- a/fish/functions/_synu_agents/qwen.fish +++ b/fish/functions/_synu_agents/qwen.fish @@ -10,7 +10,7 @@ source (status dirname)/../_synu_cache.fish # Fallback default (used when no cache entry exists) -set -g _synu_qwen_fallback_model "hf:zai-org/GLM-4.6" +set -g _synu_qwen_fallback_model "hf:zai-org/GLM-4.7" function _synu_qwen_default --description "Get default model" set -l cached (_synu_cache_get qwen model) diff --git a/zsh/functions/_synu_agents/aider.zsh b/zsh/functions/_synu_agents/aider.zsh index 06349c566d68c0fbe0cd014f0061b32bdc7e6f6a..747a6a1a7b85bb6e5650a00c852fec96d8e26906 100644 --- a/zsh/functions/_synu_agents/aider.zsh +++ b/zsh/functions/_synu_agents/aider.zsh @@ -7,8 +7,8 @@ # Aider accepts model via CLI flags and API config via environment variables # Fallback defaults (used when no cache entry exists) -typeset -g _SYNU_AIDER_FALLBACK_MODEL="hf:zai-org/GLM-4.6" -typeset -g _SYNU_AIDER_FALLBACK_EDITOR_MODEL="hf:deepseek-ai/DeepSeek-V3.1-Terminus" +typeset -g _SYNU_AIDER_FALLBACK_MODEL="hf:zai-org/GLM-4.7" +typeset -g _SYNU_AIDER_FALLBACK_EDITOR_MODEL="hf:deepseek-ai/MiniMax-M2" _synu_aider_default() { local slot=$1 diff --git a/zsh/functions/_synu_agents/claude.zsh b/zsh/functions/_synu_agents/claude.zsh index f05f1326f06f6b0cdecfcdefed790fc236ec262b..c11b38647a07cf77c4a7a08d31e9454d734301fd 100644 --- a/zsh/functions/_synu_agents/claude.zsh +++ b/zsh/functions/_synu_agents/claude.zsh @@ -7,9 +7,9 @@ # Fallback defaults (used when no cache entry exists) typeset -g _SYNU_CLAUDE_FALLBACK_OPUS="hf:moonshotai/Kimi-K2-Thinking" -typeset -g _SYNU_CLAUDE_FALLBACK_SONNET="hf:zai-org/GLM-4.6" -typeset -g _SYNU_CLAUDE_FALLBACK_HAIKU="hf:deepseek-ai/DeepSeek-V3.1-Terminus" -typeset -g _SYNU_CLAUDE_FALLBACK_AGENT="hf:zai-org/GLM-4.6" +typeset -g _SYNU_CLAUDE_FALLBACK_SONNET="hf:zai-org/GLM-4.7" +typeset -g _SYNU_CLAUDE_FALLBACK_HAIKU="hf:deepseek-ai/MiniMax-M2" +typeset -g _SYNU_CLAUDE_FALLBACK_AGENT="hf:zai-org/GLM-4.7" _synu_claude_default() { local slot=$1 diff --git a/zsh/functions/_synu_agents/llxprt.zsh b/zsh/functions/_synu_agents/llxprt.zsh index bdeea57d5b4a72d353da84b7a8251e83685b6937..543b8471984bab91c67476832b0c28b6132f7fa1 100644 --- a/zsh/functions/_synu_agents/llxprt.zsh +++ b/zsh/functions/_synu_agents/llxprt.zsh @@ -7,7 +7,7 @@ # llxprt only accepts configuration via CLI flags # Fallback default (used when no cache entry exists) -typeset -g _SYNU_LLXPRT_FALLBACK_MODEL="hf:zai-org/GLM-4.6" +typeset -g _SYNU_LLXPRT_FALLBACK_MODEL="hf:zai-org/GLM-4.7" _synu_llxprt_default() { local cached diff --git a/zsh/functions/_synu_agents/qwen.zsh b/zsh/functions/_synu_agents/qwen.zsh index e7bb746e7c3e01f9434abd1f1840f1860cfe12b0..f48800b4ea06218a025a921bd4117009e479e730 100644 --- a/zsh/functions/_synu_agents/qwen.zsh +++ b/zsh/functions/_synu_agents/qwen.zsh @@ -7,7 +7,7 @@ # Qwen Code only accepts configuration via environment variables # Fallback default (used when no cache entry exists) -typeset -g _SYNU_QWEN_FALLBACK_MODEL="hf:zai-org/GLM-4.6" +typeset -g _SYNU_QWEN_FALLBACK_MODEL="hf:zai-org/GLM-4.7" _synu_qwen_default() { local cached