mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-17 07:55:42 +00:00
When a Zed Business organization hits its token spend limit, the agent panel told the user to "check that your API key has access to this model", and did not display the error message returned by the server. The message about checking your API key was the generic 401 and 403 error for all language model providers. This is also incorrect in general since there are no API keys involved in the Zed and ChatGPT Subscription providers. So this commit changes the message for authentication errors (401s) to be provider-specific, with the current message about invalid API key as the default, and overrides for the providers that don't use API keys. And the authorization error messages (403s) now include the server error message. So the spend-limit case now reads "Permission Denied — Token-based spending limit reached." instead of talking about API keys. <img width="1888" height="426" alt="grafik" src="https://github.com/user-attachments/assets/cf9e07cd-66f0-4f8d-828c-79b875edcf2d" /> Telemetry event names (`invalid_api_key`, `no_api_key`) are kept unchanged to avoid breaking existing dashboards. Release Notes: - Fixed agent panel errors telling users to check their API key when the provider doesn't use one (Zed account, ChatGPT subscription). Permission errors also now show the provider's actual message.