fix(docs): correct OpenCode Zen description in code comment (#9998)

* fix(docs): correct OpenCode Zen description in code comment

OpenCode Zen is a pay-as-you-go token-based API, not a $200/month
subscription. The subscription tiers ($20/$100/$200) are OpenCode Black,
a separate product.

This fixes the misleading comment that conflated Zen with Black.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* fix: align OpenCode Zen billing copy (#9998) (thanks @therealZpoint-bot)

---------

Co-authored-by: Claude <claude@archibald.local>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: Gustavo Madeira Santana <gumadeiras@gmail.com>
main
therealZpoint-bot 2026-02-06 01:55:02 +01:00 committed by GitHub
parent 6c42d34610
commit c448e5da6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,11 @@
/** /**
* OpenCode Zen model catalog with dynamic fetching, caching, and static fallback. * OpenCode Zen model catalog with dynamic fetching, caching, and static fallback.
* *
* OpenCode Zen is a $200/month subscription that provides proxy access to multiple * OpenCode Zen is a pay-as-you-go token-based API that provides access to curated
* AI models (Claude, GPT, Gemini, etc.) through a single API endpoint. * models optimized for coding agents. It uses per-request billing with auto top-up.
*
* Note: OpenCode Black ($20/$100/$200/month subscriptions) is a separate product
* with flat-rate usage tiers. This module handles Zen, not Black.
* *
* API endpoint: https://opencode.ai/zen/v1 * API endpoint: https://opencode.ai/zen/v1
* Auth URL: https://opencode.ai/auth * Auth URL: https://opencode.ai/auth

View File

@ -752,7 +752,7 @@ export async function applyAuthChoiceApiProviders(
[ [
"OpenCode Zen provides access to Claude, GPT, Gemini, and more models.", "OpenCode Zen provides access to Claude, GPT, Gemini, and more models.",
"Get your API key at: https://opencode.ai/auth", "Get your API key at: https://opencode.ai/auth",
"Requires an active OpenCode Zen subscription.", "OpenCode Zen bills per request. Check your OpenCode dashboard for details.",
].join("\n"), ].join("\n"),
"OpenCode Zen", "OpenCode Zen",
); );