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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
//! Enhanced error handling types and utilities
//!
//! Advanced error handling including error recovery, classification, logging, and metrics.

#[ allow( clippy::missing_inline_in_public_items ) ]
mod private
{
  use super::super::core::orphan::*;
  use serde::{ Serialize, Deserialize };
  use std::time::Duration;
  #[ cfg( feature = "error-handling" ) ]
  use chrono;

  // Include type definitions from enhanced_types.rs
  include!( "enhanced_types.rs" );

  // Implementation of ErrorContext
  impl ErrorContext
  {
    /// Create new error context
    #[ must_use ]
    pub fn new( operation : String, request_id : String, context_data : std::collections::HashMap< String, String > ) -> Self
    {
      Self
      {
        operation,
        request_id,
        context_data,
        timestamp : chrono::Utc::now(),
      }
    }

    /// Get request ID
    #[ must_use ]
    pub fn request_id( &self ) -> &str
    {
      &self.request_id
    }

    /// Get context as a string (operation info)
    #[ must_use ]
    pub fn context( &self ) -> &str
    {
      &self.operation
    }
  }

  // Implementation of EnhancedAnthropicError
  impl EnhancedAnthropicError
  {
    /// Create new enhanced error
    #[ must_use ]
    pub fn new( error_type : ErrorType, message : String, context : Option< ErrorContext > ) -> Self
    {
      let ( class, severity, is_transient ) = match error_type
      {
        ErrorType::Authentication => ( ErrorClass::Authentication, ErrorSeverity::High, false ),
        ErrorType::InvalidRequest => ( ErrorClass::InvalidRequest, ErrorSeverity::Medium, false ),
        ErrorType::ServerError => ( ErrorClass::ServerError, ErrorSeverity::High, true ),
        ErrorType::RateLimit => ( ErrorClass::RateLimit, ErrorSeverity::Medium, true ),
        ErrorType::Network => ( ErrorClass::Network, ErrorSeverity::High, true ),
        ErrorType::Timeout => ( ErrorClass::Timeout, ErrorSeverity::Medium, true ),
        ErrorType::Parsing => ( ErrorClass::Parsing, ErrorSeverity::Medium, false ),
        ErrorType::Internal => ( ErrorClass::Internal, ErrorSeverity::High, false ),
      };

      Self
      {
        error_type,
        message,
        context,
        class,
        severity,
        is_transient,
        stack_trace : Vec::new(),
        correlation_id : None,
        request_id : None,
      }
    }

    /// Get error class
    #[ must_use ]
    pub fn error_class( &self ) -> ErrorClass
    {
      self.class.clone()
    }

    /// Get error severity
    #[ must_use ]
    pub fn severity( &self ) -> ErrorSeverity
    {
      self.severity
    }

    /// Check if error is transient
    #[ must_use ]
    pub fn is_transient( &self ) -> bool
    {
      self.is_transient
    }

    /// Check if requires credential refresh
    #[ must_use ]
    pub fn requires_credential_refresh( &self ) -> bool
    {
      matches!( self.error_type, ErrorType::Authentication )
    }

    /// Get error type
    #[ must_use ]
    pub fn error_type( &self ) -> ErrorType
    {
      self.error_type.clone()
    }

    /// Check if has remediation steps
    #[ must_use ]
    pub fn has_remediation_steps( &self ) -> bool
    {
      // Simplified implementation
      true
    }

    /// Check if is credential related
    #[ must_use ]
    pub fn is_credential_related( &self ) -> bool
    {
      matches!( self.error_type, ErrorType::Authentication )
    }

    /// Check if has backoff strategy
    #[ must_use ]
    pub fn has_backoff_strategy( &self ) -> bool
    {
      matches!( self.error_type, ErrorType::RateLimit )
    }

    /// Check if supports retry
    #[ must_use ]
    pub fn supports_retry( &self ) -> bool
    {
      self.is_transient
    }

    /// Check if has context
    #[ must_use ]
    pub fn has_context( &self ) -> bool
    {
      self.context.is_some()
    }

    /// Get context
    #[ must_use ]
    pub fn context( &self ) -> Option< &ErrorContext >
    {
      self.context.as_ref()
    }

    /// Check if has stack trace
    #[ must_use ]
    pub fn has_stack_trace( &self ) -> bool
    {
      !self.stack_trace.is_empty()
    }

    /// Get stack trace
    #[ must_use ]
    pub fn stack_trace( &self ) -> &Vec< String >
    {
      &self.stack_trace
    }

    /// Get request ID
    #[ must_use ]
    pub fn request_id( &self ) -> &Option< String >
    {
      &self.request_id
    }

    /// Get correlation ID
    #[ must_use ]
    pub fn correlation_id( &self ) -> &Option< String >
    {
      &self.correlation_id
    }

    /// Get message
    #[ must_use ]
    pub fn message( &self ) -> &str
    {
      &self.message
    }

    /// Set stack trace
    #[ must_use ]
    pub fn with_stack_trace( mut self, stack_trace : Vec< String > ) -> Self
    {
      self.stack_trace = stack_trace;
      self
    }

    /// Set request ID
    #[ must_use ]
    pub fn with_request_id( mut self, request_id : Option< String > ) -> Self
    {
      self.request_id = request_id;
      self
    }

    /// Set correlation ID
    #[ must_use ]
    pub fn with_correlation_id( mut self, correlation_id : Option< String > ) -> Self
    {
      self.correlation_id = correlation_id;
      self
    }
  }

  // Implementation of TimeoutError
  impl TimeoutError
  {
    /// Create new timeout error
    #[ must_use ]
    pub fn new( timeout_type : TimeoutType, duration : Duration, message : String ) -> Self
    {
      Self
      {
        timeout_type,
        duration,
        message,
      }
    }
  }

  // Implementation of NetworkError
  impl NetworkError
  {
    /// Create new network error
    #[ must_use ]
    pub fn new( error_type : NetworkErrorType, message : String, details : Option< String > ) -> Self
    {
      Self
      {
        error_type,
        message,
        details,
      }
    }
  }

  // Implementation of CustomError
  impl CustomError
  {
    /// Create new custom error
    #[ must_use ]
    pub fn new( name : String, message : String, severity : ErrorSeverity ) -> Self
    {
      Self
      {
        name,
        message,
        severity,
      }
    }
  }

  // Implementation of ErrorChain
  impl ErrorChain
  {
    /// Create new error chain
    #[ must_use ]
    pub fn new( primary : CustomError ) -> Self
    {
      Self
      {
        primary,
        causes : Vec::new(),
        context : String::new(),
      }
    }

    /// Add caused by error
    #[ must_use ]
    pub fn caused_by( mut self, error : AnthropicError ) -> Self
    {
      self.causes.push( error );
      self
    }

    /// Add context
    #[ must_use ]
    pub fn with_context( mut self, context : &str ) -> Self
    {
      self.context = context.to_string();
      self
    }

    /// Build the chained error
    ///
    /// # Errors
    ///
    /// Returns an error if chain length conversion fails
    pub fn build( self ) -> AnthropicResult< ChainedError >
    {
      let chain_length = u32::try_from( self.causes.len() + 1 )
        .map_err( | _ | AnthropicError::InvalidArgument( "Chain length exceeds u32 maximum".to_string() ) )?;
      let root_cause = if let Some( last_cause ) = self.causes.last()
      {
        last_cause.to_string()
      }
      else
      {
        self.primary.message.clone()
      };
      let immediate_cause = self.primary.message;
      let context = self.context;

      Ok( ChainedError
      {
        chain_length,
        root_cause,
        immediate_cause,
        context,
      })
    }
  }

  // Implementation of ChainedError
  impl ChainedError
  {
    /// Get chain length
    #[ must_use ]
    pub fn chain_length( &self ) -> u32
    {
      self.chain_length
    }

    /// Get root cause
    #[ must_use ]
    pub fn root_cause( &self ) -> &str
    {
      &self.root_cause
    }

    /// Get immediate cause
    #[ must_use ]
    pub fn immediate_cause( &self ) -> &str
    {
      &self.immediate_cause
    }

    /// Check if has context
    #[ must_use ]
    pub fn has_context( &self ) -> bool
    {
      !self.context.is_empty()
    }

    /// Get context
    #[ must_use ]
    pub fn context( &self ) -> &str
    {
      &self.context
    }

    /// Get chain iterator
    #[ must_use ]
    pub fn chain_iterator( &self ) -> std::vec::IntoIter< String >
    {
      let chain = vec![ self.immediate_cause.clone(), self.root_cause.clone() ];
      chain.into_iter()
    }
  }

  // Implementation of RequestContext
  impl RequestContext
  {
    /// Create new request context
    #[ must_use ]
    pub fn new( correlation_id : String ) -> Self
    {
      Self
      {
        correlation_id,
        request_sequence : 1,
      }
    }
  }

  // Include helper struct implementations
  include!( "enhanced_impls.rs" );
}

crate::mod_interface!
{
  #[ cfg( feature = "error-handling" ) ]
  exposed use
  {
    EnhancedAnthropicError,
    ErrorContext,
    TimeoutError,
    NetworkError,
    ErrorParser,
    ErrorMapper,
    ErrorClassifier,
    NetworkErrorClassifier,
    NetworkErrorClassification,
    ErrorRecovery,
    BackoffCalculator,
    BackoffStrategyDetails,
    CredentialHintGenerator,
    RequestContext,
    ErrorSerializer,
    ErrorLogger,
    ErrorMetrics,
    CorrelationTracker,
    ErrorLocalizer,
    RecoveryStrategy,
    ActionableError,
    BatchError,
    TimeoutClassification,
    CredentialHints,
    LogEntry,
    CorrelationSummary,
    LocalizedError,
    CustomError,
    ErrorChain,
    ChainedError,
  };
}