api_claude 0.7.1

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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
//! Enhanced model management implementations
//!
//! Impl blocks for enhanced model types: details, capabilities, comparisons, and `ModelManager` extensions.

#[ allow( clippy::missing_inline_in_public_items ) ]
mod private
{
  use super::super::enhanced::orphan::*;
  use super::super::core::orphan::*;
  use super::super::manager::orphan::ModelManager;
  use crate::error::AnthropicResult;
  use std::collections::HashMap;


  impl EnhancedModelDetails
  {
    /// Create new enhanced model details
    pub fn new( model_id : &str ) -> Self
    {
      Self
      {
        model_id : model_id.to_string(),
        display_name : Self::get_display_name_for_model( model_id ),
        description : Self::get_description_for_model( model_id ),
        version : Some( Self::get_version_for_model( model_id ) ),
        release_date : Some( Self::get_release_date_for_model( model_id ) ),
        architecture : Some( Self::get_architecture_for_model( model_id ) ),
        training_cutoff : Some( Self::get_training_cutoff_for_model( model_id ) ),
        pricing : Some( ModelPricing::for_model( model_id ) ),
        capabilities : EnhancedModelCapabilities::for_model( model_id ),
        context_window : ContextWindowDetails::for_model( model_id ),
        lifecycle : ModelLifecycle::for_model( model_id ),
      }
    }

    /// Get model ID
    pub fn get_model_id( &self ) -> &str
    {
      &self.model_id
    }

    /// Get display name
    pub fn get_display_name( &self ) -> &str
    {
      &self.display_name
    }

    /// Get description
    pub fn get_description( &self ) -> &str
    {
      &self.description
    }

    /// Get version
    pub fn get_version( &self ) -> Option< &str >
    {
      self.version.as_deref()
    }

    /// Get release date
    pub fn get_release_date( &self ) -> Option< &str >
    {
      self.release_date.as_deref()
    }

    /// Get architecture
    pub fn get_architecture( &self ) -> Option< &str >
    {
      self.architecture.as_deref()
    }

    /// Get training cutoff
    pub fn get_training_cutoff( &self ) -> Option< &str >
    {
      self.training_cutoff.as_deref()
    }

    /// Get pricing information
    pub fn get_pricing( &self ) -> Option< &ModelPricing >
    {
      self.pricing.as_ref()
    }

    /// Get capabilities
    pub fn get_capabilities( &self ) -> &EnhancedModelCapabilities
    {
      &self.capabilities
    }

    /// Get context window details
    pub fn get_context_window( &self ) -> &ContextWindowDetails
    {
      &self.context_window
    }

    /// Get lifecycle information
    pub fn get_lifecycle( &self ) -> &ModelLifecycle
    {
      &self.lifecycle
    }

    // Helper methods for mock data
    fn get_display_name_for_model( model_id : &str ) -> String
    {
      match model_id
      {
        "claude-sonnet-4-6" => "Claude Sonnet 4.6".to_string(),
        "claude-sonnet-4-5-20250929" => "Claude Sonnet 4.5".to_string(),
        "claude-haiku-4-5-20251001" => "Claude Haiku 4.5".to_string(),
        "claude-opus-4-6" => "Claude Opus 4.6".to_string(),
        _ => format!( "Model {model_id}" ),
      }
    }

    fn get_description_for_model( model_id : &str ) -> String
    {
      match model_id
      {
        "claude-sonnet-4-6" => "Our most intelligent model, with top-level performance on highly complex tasks and strong vision capabilities".to_string(),
        "claude-sonnet-4-5-20250929" => "High-performance model optimized for speed; text-only, no vision or function calling".to_string(),
        "claude-haiku-4-5-20251001" => "Our fastest model, ideal for lightweight actions with strong performance on simple tasks".to_string(),
        "claude-opus-4-6" => "Our most powerful model for the most complex tasks".to_string(),
        _ => format!( "Model description for {model_id}" ),
      }
    }

    fn get_version_for_model( model_id : &str ) -> String
    {
      if model_id.contains( "20241022" )
      {
        "2024-10-22".to_string()
      }
      else if model_id.contains( "20240229" )
      {
        "2024-02-29".to_string()
      }
      else
      {
        "1.0".to_string()
      }
    }

    fn get_release_date_for_model( model_id : &str ) -> String
    {
      if model_id.contains( "20241022" )
      {
        "2024-10-22".to_string()
      }
      else if model_id.contains( "20240229" )
      {
        "2024-02-29".to_string()
      }
      else
      {
        "2024-01-01".to_string()
      }
    }

    fn get_architecture_for_model( model_id : &str ) -> String
    {
      if model_id.contains( "claude-3" )
      {
        "Transformer".to_string()
      }
      else
      {
        "Neural Network".to_string()
      }
    }

    fn get_training_cutoff_for_model( model_id : &str ) -> String
    {
      if model_id.contains( "20241022" )
      {
        "2024-04".to_string()
      }
      else if model_id.contains( "20240229" )
      {
        "2023-08".to_string()
      }
      else
      {
        "2023-01".to_string()
      }
    }
  }

  impl EnhancedModelCapabilities
  {
    /// Create capabilities for model
    pub fn for_model( model_id : &str ) -> Self
    {
      let mut limitations = HashMap::new();

      // Add common limitations
      limitations.insert( "max_tokens_per_request".to_string(), "8192".to_string() );
      limitations.insert( "max_images_per_request".to_string(), "20".to_string() );
      limitations.insert( "supported_image_formats".to_string(), "JPEG, PNG, GIF, WebP".to_string() );

      // Sonnet 4.5 is text-only (no vision, no function calling); Sonnet 4.6 adds vision + tools
      let (supports_vision, supports_function_calling) = match model_id
      {
        "claude-sonnet-4-6" | "claude-opus-4-6" => (true, true),
        "claude-haiku-4-5-20251001" => (false, true),
        _ => (false, false),  // covers claude-sonnet-4-5-20250929 and unknown models
      };

      Self
      {
        supports_function_calling,
        supports_vision,
        supports_multimodal_input : supports_vision,
        supports_streaming : true,
        supports_system_prompts : true,
        limitations,
        performance_profile : PerformanceProfile::for_model( model_id ),
      }
    }

    /// Check if supports function calling
    pub fn supports_function_calling( &self ) -> bool
    {
      self.supports_function_calling
    }

    /// Check if supports vision
    pub fn supports_vision( &self ) -> bool
    {
      self.supports_vision
    }

    /// Check if supports multimodal input
    pub fn supports_multimodal_input( &self ) -> bool
    {
      self.supports_multimodal_input
    }

    /// Check if supports streaming
    pub fn supports_streaming( &self ) -> bool
    {
      self.supports_streaming
    }

    /// Check if supports system prompts
    pub fn supports_system_prompts( &self ) -> bool
    {
      self.supports_system_prompts
    }

    /// Get limitations
    pub fn get_limitations( &self ) -> &HashMap< String, String >
    {
      &self.limitations
    }

    /// Get performance profile
    pub fn get_performance_profile( &self ) -> &PerformanceProfile
    {
      &self.performance_profile
    }
  }

  impl PerformanceProfile
  {
    /// Create performance profile for model
    pub fn for_model( model_id : &str ) -> Self
    {
      let (latency, throughput, cost) = match model_id
      {
        "claude-sonnet-4-6" => ("medium", "high", "medium"),
        "claude-sonnet-4-5-20250929" => ("low", "very_high", "medium"),
        "claude-haiku-4-5-20251001" => ("low", "very_high", "low"),
        "claude-opus-4-6" => ("high", "medium", "high"),
        _ => ("medium", "medium", "medium"),
      };

      Self
      {
        latency_category : Some( latency.to_string() ),
        throughput_category : Some( throughput.to_string() ),
        cost_category : Some( cost.to_string() ),
      }
    }

    /// Get latency category
    pub fn get_latency_category( &self ) -> Option< &str >
    {
      self.latency_category.as_deref()
    }

    /// Get throughput category
    pub fn get_throughput_category( &self ) -> Option< &str >
    {
      self.throughput_category.as_deref()
    }

    /// Get cost category
    pub fn get_cost_category( &self ) -> Option< &str >
    {
      self.cost_category.as_deref()
    }
  }

  impl ContextWindowDetails
  {
    /// Create context window details for model
    pub fn for_model( model_id : &str ) -> Self
    {
      let (max_context, max_output) = match model_id
      {
        "claude-sonnet-4-6" | "claude-sonnet-4-5-20250929" | "claude-haiku-4-5-20251001"
        | "claude-opus-4-6" => (200_000, 8_192),
        _ => (100_000, 4_096),
      };

      Self
      {
        max_context_tokens : max_context,
        max_output_tokens : max_output,
        token_breakdown : TokenBreakdown::new(),
      }
    }

    /// Get max context tokens
    pub fn get_max_context_tokens( &self ) -> u32
    {
      self.max_context_tokens
    }

    /// Get max output tokens
    pub fn get_max_output_tokens( &self ) -> u32
    {
      self.max_output_tokens
    }

    /// Get token breakdown
    pub fn get_token_breakdown( &self ) -> &TokenBreakdown
    {
      &self.token_breakdown
    }

    /// Estimate tokens for text
    pub fn estimate_tokens( &self, text : &str ) -> u32
    {
      // Simple estimation : ~4 characters per token
      #[ allow( clippy::cast_possible_truncation ) ]
      {
        ( text.len() as u32 + 3 ) / 4
      }
    }

    /// Get optimization suggestions
    pub fn get_optimization_suggestions( &self ) -> Vec< String >
    {
      vec![
        "Use system prompts efficiently".to_string(),
        "Minimize tool definitions when not needed".to_string(),
        "Consider conversation history length".to_string(),
      ]
    }

  }

  impl Default for TokenBreakdown
  {
    fn default() -> Self 
    {
      Self::new()
    }
  }

  impl TokenBreakdown
  {
    /// Create new token breakdown
    pub fn new() -> Self
    {
      Self
      {
        system_prompt_tokens : 1000,
        conversation_tokens : 150_000,
        tool_definition_tokens : 5000,
      }
    }

    /// Get system prompt token allocation
    pub fn get_system_prompt_tokens( &self ) -> u32
    {
      self.system_prompt_tokens
    }

    /// Get conversation token allocation
    pub fn get_conversation_tokens( &self ) -> u32
    {
      self.conversation_tokens
    }

    /// Get tool definition token allocation
    pub fn get_tool_definition_tokens( &self ) -> u32
    {
      self.tool_definition_tokens
    }
  }

  impl ModelLifecycle
  {
    /// Create lifecycle information for model
    pub fn for_model( model_id : &str ) -> Self
    {
      let (status, is_deprecated, replacement) = match model_id
      {
        "claude-sonnet-4-6" | "claude-sonnet-4-5-20250929" | "claude-haiku-4-5-20251001" | "claude-opus-4-6" => ("active", false, None),
        "claude-2.1" => ("deprecated", true, Some( "claude-sonnet-4-6" )),
        _ => ("unknown", false, None),
      };

      Self
      {
        status : status.to_string(),
        is_deprecated,
        release_date : Some( "2024-10-22".to_string() ),
        deprecation_date : if is_deprecated { Some( "2024-12-01".to_string() ) } else { None },
        end_of_life_date : if is_deprecated { Some( "2025-03-01".to_string() ) } else { None },
        replacement_model : replacement.map( std::string::ToString::to_string ),
        migration_guide : if is_deprecated
        {
          vec![
            "Update model parameter in requests".to_string(),
            "Test with new model capabilities".to_string(),
            "Update pricing expectations".to_string(),
          ]
        }
        else
        {
          vec![]
        },
        version_compatibility : VersionCompatibility::new(),
      }
    }

    /// Check if model is deprecated
    pub fn is_deprecated( &self ) -> bool
    {
      self.is_deprecated
    }

    /// Get status
    pub fn get_status( &self ) -> &str
    {
      &self.status
    }

    /// Get release date
    pub fn get_release_date( &self ) -> Option< &str >
    {
      self.release_date.as_deref()
    }

    /// Get deprecation date
    pub fn get_deprecation_date( &self ) -> Option< &str >
    {
      self.deprecation_date.as_deref()
    }

    /// Get end of life date
    pub fn get_end_of_life_date( &self ) -> Option< &str >
    {
      self.end_of_life_date.as_deref()
    }

    /// Get replacement model
    pub fn get_replacement_model( &self ) -> Option< &str >
    {
      self.replacement_model.as_deref()
    }

    /// Get migration guide
    pub fn get_migration_guide( &self ) -> &Vec< String >
    {
      &self.migration_guide
    }

    /// Get version compatibility
    pub fn get_version_compatibility( &self ) -> &VersionCompatibility
    {
      &self.version_compatibility
    }
  }

  impl Default for VersionCompatibility
  {
    fn default() -> Self 
    {
      Self::new()
    }
  }

  impl VersionCompatibility
  {
    /// Create new version compatibility
    pub fn new() -> Self
    {
      Self
      {
        supported_api_versions : vec![
          "2023-06-01".to_string(),
          "2023-01-01".to_string(),
        ],
      }
    }

    /// Get supported API versions
    pub fn get_supported_api_versions( &self ) -> &Vec< String >
    {
      &self.supported_api_versions
    }

    /// Check if compatible with version
    pub fn is_compatible_with_version( &self, version : &str ) -> bool
    {
      self.supported_api_versions.contains( &version.to_string() )
    }
  }

  impl ModelPricing
  {
    /// Create pricing for model
    pub fn for_model( model_id : &str ) -> Self
    {
      let (input_price, output_price, tier) = match model_id
      {
        "claude-sonnet-4-6" | "claude-sonnet-4-5-20250929" => (0.003, 0.015, Some( "premium".to_string() )),
        "claude-haiku-4-5-20251001" => (0.00025, 0.00125, Some( "standard".to_string() )),
        "claude-opus-4-6" => (0.015, 0.075, Some( "premium".to_string() )),
        _ => (0.001, 0.005, Some( "standard".to_string() )),
      };

      Self
      {
        input_cost_per_token : input_price / 1000.0,
        output_cost_per_token : output_price / 1000.0,
        currency : "USD".to_string(),
        usage_tier : tier.unwrap_or_else( || "standard".to_string() ),
      }
    }

    /// Get input price per token
    pub fn get_input_price_per_token( &self ) -> f64
    {
      self.input_cost_per_token
    }

    /// Get output price per token
    pub fn get_output_price_per_token( &self ) -> f64
    {
      self.output_cost_per_token
    }

    /// Get currency
    pub fn get_currency( &self ) -> &str
    {
      &self.currency
    }

    /// Get usage tier
    pub fn get_usage_tier( &self ) -> &str
    {
      &self.usage_tier
    }
  }

  impl ModelComparison
  {
    /// Create comparison between two models
    pub fn between( model_a : &str, model_b : &str ) -> Self
    {
      let capability_differences = vec![
        "vision_support".to_string(),
        "performance_tier".to_string(),
      ];

      let use_case_recommendations = vec![
        "Use Sonnet for complex reasoning tasks".to_string(),
        "Use Haiku for fast, simple tasks".to_string(),
      ];

      Self
      {
        model_a : model_a.to_string(),
        model_b : model_b.to_string(),
        capability_differences,
        cost_comparison : CostComparison::new(),
        performance_comparison : PerformanceComparison::new(),
        use_case_recommendations,
      }
    }

    /// Get capability differences
    pub fn get_capability_differences( &self ) -> &Vec< String >
    {
      &self.capability_differences
    }

    /// Get cost comparison
    pub fn get_cost_comparison( &self ) -> &CostComparison
    {
      &self.cost_comparison
    }

    /// Get performance comparison
    pub fn get_performance_comparison( &self ) -> &PerformanceComparison
    {
      &self.performance_comparison
    }

    /// Get use case recommendations
    pub fn get_use_case_recommendations( &self ) -> &Vec< String >
    {
      &self.use_case_recommendations
    }
  }

  impl Default for CostComparison
  {
    fn default() -> Self 
    {
      Self::new()
    }
  }

  impl CostComparison
  {
    /// Create new cost comparison
    pub fn new() -> Self
    {
      Self
      {
        cost_ratio : 12.0, // Sonnet costs 12x more than Haiku
        cost_analysis : vec![
          "Higher cost for better quality".to_string(),
          "Consider usage patterns".to_string(),
        ],
      }
    }

    /// Get cost ratio
    pub fn get_cost_ratio( &self ) -> f64
    {
      self.cost_ratio
    }

    /// Get cost analysis
    pub fn get_cost_analysis( &self ) -> &Vec< String >
    {
      &self.cost_analysis
    }
  }

  impl Default for PerformanceComparison
  {
    fn default() -> Self 
    {
      Self::new()
    }
  }

  impl PerformanceComparison
  {
    /// Create new performance comparison
    pub fn new() -> Self
    {
      Self
      {
        latency_ratio : 0.3, // Haiku is 3x faster
        quality_score_diff : 0.2, // Sonnet has higher quality
      }
    }

    /// Get latency ratio
    pub fn get_latency_ratio( &self ) -> f64
    {
      self.latency_ratio
    }

    /// Get quality score difference
    pub fn get_quality_score_diff( &self ) -> f64
    {
      self.quality_score_diff
    }
  }

  impl FilteredModel
  {
    /// Check if supports vision
    pub fn supports_vision( &self ) -> bool
    {
      self.supports_vision
    }

    /// Get context length
    pub fn get_context_length( &self ) -> u32
    {
      self.context_length
    }

    /// Check if deprecated
    pub fn is_deprecated( &self ) -> bool
    {
      self.is_deprecated
    }
  }

  impl ModelSearchResult
  {
    /// Get name
    pub fn get_name( &self ) -> &str
    {
      &self.name
    }

    /// Get description
    pub fn get_description( &self ) -> &str
    {
      &self.description
    }
  }

  // Add the new types to the model manager
  impl ModelManager
  {
    /// Get enhanced model details
    ///
    /// # Errors
    ///
    /// Returns an error if model not found
    pub fn get_enhanced_details( &self, model_id : &str ) -> AnthropicResult< EnhancedModelDetails >
    {
      Ok( EnhancedModelDetails::new( model_id ) )
    }

    /// Compare two models
    ///
    /// # Errors
    ///
    /// Returns an error if models not found
    pub fn compare_models( &self, model_a : &str, model_b : &str ) -> AnthropicResult< ModelComparison >
    {
      Ok( ModelComparison::between( model_a, model_b ) )
    }

    /// Get model lifecycle information
    ///
    /// # Errors
    ///
    /// Returns an error if model not found
    pub fn get_model_lifecycle( &self, model_id : &str ) -> AnthropicResult< ModelLifecycle >
    {
      Ok( ModelLifecycle::for_model( model_id ) )
    }

    /// Get context window details
    ///
    /// # Errors
    ///
    /// Returns an error if model not found
    pub fn get_context_window_details( &self, model_id : &str ) -> AnthropicResult< ContextWindowDetails >
    {
      Ok( ContextWindowDetails::for_model( model_id ) )
    }

    /// Get enhanced capabilities
    ///
    /// # Errors
    ///
    /// Returns an error if model not found
    pub fn get_enhanced_capabilities( &self, model_id : &str ) -> AnthropicResult< EnhancedModelCapabilities >
    {
      Ok( EnhancedModelCapabilities::for_model( model_id ) )
    }
  }

}

crate::mod_interface!
{
  // No new types — all types defined in enhanced.rs
}