api_claude 0.4.0

Claude API for accessing Anthropic's large language models (LLMs).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Error handling for the Anthropic API client
//!
//! This module provides comprehensive error handling including error classification,
//! recovery strategies, contextual information, and actionable error messages.
//! All error types support structured error recovery and debugging capabilities.

mod private {}

crate::mod_interface!
{
  layer core;
  #[ cfg( feature = "error-handling" ) ]
  layer enhanced;
}