fix(chat): expose structured provider query errors - #280
Merged
jacob-bd merged 1 commit intoAug 5, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ServiceErrorerror_detailsobject{status, error, hint}error contractMotivation
Provider failures such as
INVALID_ARGUMENT,NOT_FOUND,RESOURCE_EXHAUSTED, andUNAUTHENTICATEDcurrently collapse into similar text responses. Agents cannot reliably decide whether to correct input, retry later, check access, or refresh authentication.This change prevents invalid arguments from being presented as authentication failures and makes retry decisions machine-readable.
Compatibility
error_detailsis added only when structured metadata existsretryable=Falseis preserved rather than dropped as a falsey valueValidation
uv run ruff check .uv run ruff format --check .Provider-code transitions were validated through deterministic
QueryRejectedErrorservice and MCP-wrapper cases; no live query mutation was required.