fix(drive-import): handle ai-service-unavailable failure from backend []#11002
Open
Mitch Goudy (mgoudy91) wants to merge 3 commits into
Open
fix(drive-import): handle ai-service-unavailable failure from backend []#11002Mitch Goudy (mgoudy91) wants to merge 3 commits into
Mitch Goudy (mgoudy91) wants to merge 3 commits into
Conversation
… reason Adds GOOGLE_DOCS_NOT_FOUND to WorkflowFailureReason and wires it through the hook and error modal so users see "Document not found" with an actionable message instead of the generic error screen. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…v vars GOOGLE_PICKER_API_KEY and GOOGLE_APP_ID were hardcoded (empty string and 1 respectively), causing the Google Picker to not reliably show files the user owns — especially newly created docs. Reads from VITE_GOOGLE_PICKER_API_KEY and VITE_GOOGLE_APP_ID env vars instead, and wires them into CI build steps. The actual values must be added to CircleCI project environment variables: - VITE_GOOGLE_PICKER_API_KEY: from GCP > APIs & Services > Credentials > Drive Integration API key - VITE_GOOGLE_APP_ID: 991777691184 (Contentful Google Docs App project number) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ckend Maps the new 'ai-service-unavailable' workflow failure code from the backend to a user-facing message: 'The AI service is temporarily unavailable. Please try again in a few minutes.' instead of the generic 'This preview could not be completed. Please start again.' Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3844b0d to
ae79c9d
Compare
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.
Problem
When the AI service timed out or was unavailable during a drive import, users saw:
This message is misleading — it implies the user did something wrong when the problem is a transient service issue.
What changed
AI_SERVICE_UNAVAILABLE = 'ai-service-unavailable'toWorkflowFailureReasonenumAI_SERVICE_UNAVAILABLEerror message: "The AI service is temporarily unavailable. Please try again in a few minutes."useWorkflowAgentandModalOrchestratorso the error modal shows the correct title and messagePaired PR
contentful/agents-api#539 — backend adds timeout + retry to preview agent and emits the new failure code
🤖 Generated with Claude Code