Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to the **OpenCode Go BYOK Provider** extension are documented here.

## [Unreleased]

### Fixed

- **`[Models]` Block unavailable Zen free models from the picker (#203, #204).** The gateway lists `deepseek-v4-flash-free` and `laguna-s-2.1-free` but requests to them consistently fail — `Model is unavailable` (HTTP 400) for the former, `Endpoint is unavailable` (HTTP 503, upstream endpoint down) for the latter. Both added to `KNOWN_UNAVAILABLE_MODEL_IDS` so they are hidden from the picker on every path (live, cached, bundled), preventing repeated failures. Removed from the README Zen free-models table.

## [0.7.3] — 2026-08-28

### Fixed
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,17 +128,15 @@ Curated open coding models, refreshed live from the endpoint. Deprecated/legacy

### 🆓 OpenCode Zen — Free models (no payment needed)

OpenCode Zen offers **rotating free models** — no balance required. Currently free: **Big Pickle** (stealth model), DeepSeek V4 Flash Free, MiMo-V2.5 Free, Hy3 Free, Laguna S 2.1 Free, Ling-3.0-tiny Free, Nemotron 3 Ultra Free, and Nemotron 3.5 Lightning Free. Without a balance, rate limits are low. Adding $20+ to your Zen balance significantly improves rate limits on free models.
OpenCode Zen offers **rotating free models** — no balance required. Currently free: **Big Pickle** (stealth model), MiMo-V2.5 Free, Hy3 Free, Laguna S 2.1 Free, Ling-3.0-tiny Free, Nemotron 3 Ultra Free, and Nemotron 3.5 Lightning Free. Without a balance, rate limits are low. Adding $20+ to your Zen balance significantly improves rate limits on free models.

> **Note:** Per the OpenCode docs, free models are all offered **for a limited time** and rotate periodically. The table shows current offerings — availability may change.

| Model | Context | Max Output | Vendor |
| ----------------------------- | --------: | ---------: | ---------- |
| `big-pickle` | 200,000 | 32,000 | 🥒 Stealth |
| `deepseek-v4-flash-free` | 200,000 | 128,000 | DeepSeek |
| `mimo-v2.5-free` | 200,000 | 32,000 | Xiaomi |
| `hy3-free` | 190,000 | 64,000 | — |
| `laguna-s-2.1-free` | 256,000 | 32,000 | — |
| `ling-3.0-tiny-free` | 262,144 | 32,768 | — |
| `nemotron-3-ultra-free` | 1,000,000 | 128,000 | NVIDIA |
| `nemotron-3.5-lightning-free` | 262,144 | 262,144 | NVIDIA |
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,12 @@ export const TRANSIENT_FETCH_RETRY_JITTER_MS = 250;
/** Zen free-model IDs that do not end in `-free`. */
export const FREE_ZEN_MODEL_IDS = new Set(["big-pickle"]);
/** Models removed upstream — always filtered from the picker. */
export const KNOWN_UNAVAILABLE_MODEL_IDS = new Set(["ring-2.6-1t", "ring-2.6-1t-free", "trinity-large-preview-free"]);
export const KNOWN_UNAVAILABLE_MODEL_IDS = new Set([
"ring-2.6-1t",
"ring-2.6-1t-free",
"trinity-large-preview-free",
"deepseek-v4-flash-free",
]);

/**
* Models that live on the OpenCode Zen gateway but with constrained GPU
Expand All @@ -328,7 +333,7 @@ export const KNOWN_UNAVAILABLE_MODEL_IDS = new Set(["ring-2.6-1t", "ring-2.6-1t-
*/
export const CAPACITY_LIMITED_MODEL_NOTES: Record<string, string> = {
"qwen3.6-plus-free":
"Free relaunch with limited GPU capacity. Stable for short prompts; bursty traffic or very large tool catalogs may return 5xx - retry or fall back to 'deepseek-v4-flash-free' / 'big-pickle'. Paid 'qwen3.6-plus' has no quota.",
"Free relaunch with limited GPU capacity. Stable for short prompts; bursty traffic or very large tool catalogs may return 5xx - retry or fall back to 'big-pickle'. Paid 'qwen3.6-plus' has no quota.",
};

// ─── Per-family thinking defaults (see thinking.ts for the schema) ───────────
Expand Down
Loading