feat: implement multi-layer AI resilience with retries and circuit br…#29
Merged
dedilaniado merged 6 commits intomainfrom Apr 25, 2026
Merged
feat: implement multi-layer AI resilience with retries and circuit br…#29dedilaniado merged 6 commits intomainfrom
dedilaniado merged 6 commits intomainfrom
Conversation
dedilaniado
approved these changes
Apr 25, 2026
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.
📋 PR Summary: AI Resilience & Error Handling
Goal: Implement a robust safety layer for AI model calls to handle rate limits (429) and service outages (5xx) gracefully, preventing system crashes and providing instant feedback to users.
🚀 Key Features
Smart Retries (
tenacity):llm_service.py.Circuit Breaker Pattern:
CircuitBreakersingleton that acts as a "safety switch."End-to-End Error Mapping:
429for rate limits,503for service unavailable/circuit open).AI_SERVICE_BUSYmessage: "The AI engine is currently at capacity. Please try again in a minute."Observability & Docs:
printstatements with proper Pythonlogging.data-engineREADME to explain the logic to future developers.🧪 Testing & Verification
test_resilience.py): Verified that the circuit trips after failures, fast-fails when open, and correctly executes retries.ai-resilience.spec.ts): Verified that the orchestrator correctly identifies and maps technical failures from the Python service.main.py.Note for Reviewer: This implementation uses the
tenacitylibrary for declarative retries and a customCircuitBreakerimplementation to ensure high stability during AI model peaks.