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 recovery;
8pub mod monitoring;
9
10pub use context::{ErrorContext, SuggestedAction};
11pub use recovery::{ErrorRecoveryManager, RecoveryStrategy};
12pub use monitoring::{ErrorMonitor, ErrorThresholds};