ai_lib/error_handling/mod.rs
1//! Enhanced error handling and recovery mechanisms
2//!
3//! This module provides advanced error handling, context tracking,
4//! and recovery strategies for AI API calls.
5
6pub mod context;
7pub mod monitoring;
8pub mod recovery;
9
10pub use context::{ErrorContext, SuggestedAction};
11pub use monitoring::{ErrorMonitor, ErrorThresholds};
12pub use recovery::{ErrorRecoveryManager, RecoveryStrategy};