From 28c2fb92a8a2419bb51a7de08dd66bfa82deeef1 Mon Sep 17 00:00:00 2001 From: kang-heewon Date: Tue, 31 Mar 2026 14:46:34 +0900 Subject: [PATCH 1/3] feat(providers): add 4 free models to opencode-zen --- open-sse/config/providerRegistry.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/open-sse/config/providerRegistry.ts b/open-sse/config/providerRegistry.ts index 4d69ded5fc..3586df7c6e 100644 --- a/open-sse/config/providerRegistry.ts +++ b/open-sse/config/providerRegistry.ts @@ -593,6 +593,10 @@ export const REGISTRY: Record = { { id: "minimax-m2.5-free", name: "MiniMax M2.5 Free" }, { id: "big-pickle", name: "Big Pickle" }, { id: "gpt-5-nano", name: "GPT 5 Nano" }, + { id: "mimo-v2-omni-free", name: "MiMo V2 Omni Free" }, + { id: "mimo-v2-pro-free", name: "MiMo V2 Pro Free" }, + { id: "nemotron-3-super-free", name: "Nemotron 3 Super Free" }, + { id: "qwen3.6-plus-free", name: "Qwen 3.6 Plus Free" }, ], }, From 1f0a5842f93b9e92fb5b4b56bfe8438508fadd62 Mon Sep 17 00:00:00 2001 From: kang-heewon Date: Tue, 31 Mar 2026 14:53:09 +0900 Subject: [PATCH 2/3] feat(providers): add explicit contextLength for opencode-zen free models --- open-sse/config/providerRegistry.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/open-sse/config/providerRegistry.ts b/open-sse/config/providerRegistry.ts index 3586df7c6e..e4be47766b 100644 --- a/open-sse/config/providerRegistry.ts +++ b/open-sse/config/providerRegistry.ts @@ -593,10 +593,10 @@ export const REGISTRY: Record = { { id: "minimax-m2.5-free", name: "MiniMax M2.5 Free" }, { id: "big-pickle", name: "Big Pickle" }, { id: "gpt-5-nano", name: "GPT 5 Nano" }, - { id: "mimo-v2-omni-free", name: "MiMo V2 Omni Free" }, - { id: "mimo-v2-pro-free", name: "MiMo V2 Pro Free" }, - { id: "nemotron-3-super-free", name: "Nemotron 3 Super Free" }, - { id: "qwen3.6-plus-free", name: "Qwen 3.6 Plus Free" }, + { id: "mimo-v2-omni-free", name: "MiMo V2 Omni Free", contextLength: 262144 }, + { id: "mimo-v2-pro-free", name: "MiMo V2 Pro Free", contextLength: 1048576 }, + { id: "nemotron-3-super-free", name: "Nemotron 3 Super Free", contextLength: 1000000 }, + { id: "qwen3.6-plus-free", name: "Qwen 3.6 Plus Free", contextLength: 1048576 }, ], }, From 641f84e9f8fad00140d1b1885adf832cb130ac32 Mon Sep 17 00:00:00 2001 From: kang-heewon Date: Tue, 31 Mar 2026 14:54:56 +0900 Subject: [PATCH 3/3] feat(providers): add contextLength for all opencode-zen models --- open-sse/config/providerRegistry.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/open-sse/config/providerRegistry.ts b/open-sse/config/providerRegistry.ts index e4be47766b..efa28569b3 100644 --- a/open-sse/config/providerRegistry.ts +++ b/open-sse/config/providerRegistry.ts @@ -590,9 +590,9 @@ export const REGISTRY: Record = { authPrefix: "Bearer", defaultContextLength: 200000, models: [ - { id: "minimax-m2.5-free", name: "MiniMax M2.5 Free" }, - { id: "big-pickle", name: "Big Pickle" }, - { id: "gpt-5-nano", name: "GPT 5 Nano" }, + { id: "minimax-m2.5-free", name: "MiniMax M2.5 Free", contextLength: 204800 }, + { id: "big-pickle", name: "Big Pickle", contextLength: 200000 }, + { id: "gpt-5-nano", name: "GPT 5 Nano", contextLength: 400000 }, { id: "mimo-v2-omni-free", name: "MiMo V2 Omni Free", contextLength: 262144 }, { id: "mimo-v2-pro-free", name: "MiMo V2 Pro Free", contextLength: 1048576 }, { id: "nemotron-3-super-free", name: "Nemotron 3 Super Free", contextLength: 1000000 },