cli: update usage exceeded error

pull/18529/merge
Frank 2026-04-02 00:25:21 -04:00
parent ebaa99aba2
commit 811c7e2494
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ export namespace SessionRetry {
if (MessageV2.APIError.isInstance(error)) {
if (!error.data.isRetryable) return undefined
if (error.data.responseBody?.includes("FreeUsageLimitError"))
return `Free usage exceeded, add credits https://opencode.ai/zen`
return `Free usage exceeded, subscribe to Go https://opencode.ai/go`
return error.data.message.includes("Overloaded") ? "Provider is overloaded" : error.data.message
}