code-mesh-core 0.1.0

High-performance, WASM-powered distributed swarm intelligence core library for concurrent code execution and neural mesh computing
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
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
//! Anthropic provider implementation with full streaming support

use async_trait::async_trait;
use reqwest::{Client, header};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use once_cell::sync::Lazy;
use futures_util::{Stream, StreamExt};
use pin_project::pin_project;
use std::pin::Pin;
use std::task::{Context, Poll};
use bytes::Bytes;
use tokio::sync::mpsc;
use std::time::{Duration, Instant};
use tokio::time::sleep;
use parking_lot::Mutex;
use std::sync::Arc;
use futures::future;

use super::{
    Provider, Model, Message, MessageRole, MessageContent, MessagePart,
    GenerateOptions, GenerateResult, StreamChunk, StreamOptions,
    ToolCall, ToolDefinition, Usage, FinishReason, LanguageModel,
    ModelInfo, ModelCapabilities, ModelLimits, ModelPricing, ModelStatus,
    ProviderHealth, ProviderConfig, RateLimitInfo, UsageStats,
    ModelConfig,
};
use super::provider::ModelMetadata;
use crate::auth::{Auth, AuthCredentials};

/// Simple auth implementation for models
struct SimpleAnthropicAuth;

impl SimpleAnthropicAuth {
    fn new() -> Self {
        Self
    }
}

#[async_trait]
impl Auth for SimpleAnthropicAuth {
    fn provider_id(&self) -> &str {
        "anthropic"
    }
    
    async fn get_credentials(&self) -> crate::Result<AuthCredentials> {
        // Try to get API key from environment
        if let Ok(api_key) = std::env::var("ANTHROPIC_API_KEY") {
            Ok(AuthCredentials::ApiKey { key: api_key })
        } else {
            Err(crate::Error::AuthenticationFailed(
                "No ANTHROPIC_API_KEY environment variable found".to_string()
            ))
        }
    }
    
    async fn set_credentials(&self, _credentials: AuthCredentials) -> crate::Result<()> {
        // Simple auth doesn't support setting credentials
        Err(crate::Error::AuthenticationFailed(
            "Setting credentials not supported in simple auth".to_string()
        ))
    }
    
    async fn remove_credentials(&self) -> crate::Result<()> {
        // Simple auth doesn't support removing credentials
        Ok(())
    }
    
    async fn has_credentials(&self) -> bool {
        std::env::var("ANTHROPIC_API_KEY").is_ok()
    }
}

/// Anthropic provider operation mode
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum AnthropicMode {
    /// Standard API mode
    Standard,
    /// Batch processing mode (lower cost, higher latency)
    Batch,
    /// Real-time mode (optimized for low latency)
    RealTime,
}

impl Default for AnthropicMode {
    fn default() -> Self {
        Self::Standard
    }
}

/// Anthropic provider with rate limiting and retry logic
#[derive(Clone)]
pub struct AnthropicProvider {
    client: Client,
    auth: Arc<dyn Auth>,
    rate_limiter: Arc<RateLimiter>,
    config: ProviderConfig,
    mode: AnthropicMode,
}

/// Rate limiter for API requests
pub(crate) struct RateLimiter {
    pub(crate) last_request: Mutex<Option<Instant>>,
    pub(crate) min_interval: Duration,
}

impl RateLimiter {
    pub(crate) fn new() -> Self {
        Self {
            last_request: Mutex::new(None),
            min_interval: Duration::from_millis(100), // 10 RPS max
        }
    }
    
    pub(crate) async fn acquire(&self) {
        let should_wait = {
            let mut last = self.last_request.lock();
            if let Some(last_time) = *last {
                let elapsed = last_time.elapsed();
                if elapsed < self.min_interval {
                    Some(self.min_interval - elapsed)
                } else {
                    *last = Some(Instant::now());
                    None
                }
            } else {
                *last = Some(Instant::now());
                None
            }
        };
        
        if let Some(wait_time) = should_wait {
            sleep(wait_time).await;
            self.last_request.lock().replace(Instant::now());
        }
    }
}

impl AnthropicProvider {
    pub fn new(auth: Box<dyn Auth>) -> Self {
        let client = Client::builder()
            .default_headers({
                let mut headers = header::HeaderMap::new();
                headers.insert("anthropic-version", "2023-06-01".parse().unwrap());
                headers.insert("accept", "application/json".parse().unwrap());
                headers.insert("content-type", "application/json".parse().unwrap());
                headers.insert("user-agent", "code-mesh/0.1.0".parse().unwrap());
                headers
            })
            .timeout(Duration::from_secs(300))
            .build()
            .unwrap();
        
        Self { 
            client, 
            auth: Arc::from(auth),
            rate_limiter: Arc::new(RateLimiter::new()),
            config: ProviderConfig {
                provider_id: "anthropic".to_string(),
                ..Default::default()
            },
            mode: AnthropicMode::default(),
        }
    }
    
    /// Execute request with retry logic
    async fn execute_with_retry<F, T>(&self, operation: F) -> crate::Result<T>
    where
        F: Fn() -> future::BoxFuture<'static, crate::Result<T>>,
    {
        let mut attempts = 0;
        let max_attempts = 3;
        
        loop {
            self.rate_limiter.acquire().await;
            
            match operation().await {
                Ok(result) => return Ok(result),
                Err(e) => {
                    attempts += 1;
                    
                    if attempts >= max_attempts {
                        return Err(e);
                    }
                    
                    // Check if error is retryable
                    let should_retry = match &e {
                        crate::Error::Network(req_err) => {
                            req_err.status().map_or(true, |status| {
                                status.as_u16() >= 500 || status.as_u16() == 429
                            })
                        },
                        crate::Error::Provider(msg) => {
                            msg.contains("rate_limit") || msg.contains("timeout")
                        },
                        _ => false,
                    };
                    
                    if !should_retry {
                        return Err(e);
                    }
                    
                    // Exponential backoff
                    let delay = Duration::from_millis(1000 * (2_u64.pow(attempts - 1)));
                    sleep(delay).await;
                }
            }
        }
    }
    
    /// Validate and refresh credentials
    pub(crate) async fn validate_and_refresh_credentials(&self) -> crate::Result<String> {
        let credentials = self.auth.get_credentials().await?;
        
        match credentials {
            AuthCredentials::ApiKey { key } => {
                // Validate API key format
                if !key.starts_with("sk-ant-") {
                    return Err(crate::Error::AuthenticationFailed(
                        "Invalid Anthropic API key format".to_string()
                    ));
                }
                Ok(key)
            },
            AuthCredentials::OAuth { access_token, refresh_token, expires_at } => {
                // Check if token is expired
                if let Some(expires_at) = expires_at {
                    let now = std::time::SystemTime::now()
                        .duration_since(std::time::UNIX_EPOCH)
                        .unwrap()
                        .as_secs();
                    
                    if now >= expires_at {
                        // Try to refresh token
                        if let Some(refresh_token) = refresh_token {
                            return self.refresh_oauth_token(refresh_token).await;
                        } else {
                            return Err(crate::Error::AuthenticationFailed(
                                "OAuth token expired and no refresh token available".to_string()
                            ));
                        }
                    }
                }
                Ok(access_token)
            },
            _ => Err(crate::Error::AuthenticationFailed(
                "Unsupported credential type for Anthropic".to_string()
            )),
        }
    }
    
    async fn refresh_oauth_token(&self, refresh_token: String) -> crate::Result<String> {
        // Implement OAuth token refresh
        let refresh_request = self.client
            .post("https://api.anthropic.com/oauth/token")
            .json(&serde_json::json!({
                "grant_type": "refresh_token",
                "refresh_token": refresh_token
            }))
            .send()
            .await?;
        
        if !refresh_request.status().is_success() {
            return Err(crate::Error::AuthenticationFailed(
                "Failed to refresh OAuth token".to_string()
            ));
        }
        
        let refresh_response: serde_json::Value = refresh_request.json().await?;
        
        let new_access_token = refresh_response["access_token"]
            .as_str()
            .ok_or_else(|| crate::Error::AuthenticationFailed(
                "Invalid refresh response".to_string()
            ))?
            .to_string();
        
        let new_refresh_token = refresh_response["refresh_token"]
            .as_str()
            .map(|s| s.to_string());
        
        let expires_in = refresh_response["expires_in"]
            .as_u64()
            .unwrap_or(3600);
        
        let expires_at = std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .unwrap()
            .as_secs() + expires_in;
        
        // Store updated credentials
        let new_credentials = AuthCredentials::OAuth {
            access_token: new_access_token.clone(),
            refresh_token: new_refresh_token,
            expires_at: Some(expires_at),
        };
        
        self.auth.set_credentials(new_credentials).await?;
        
        Ok(new_access_token)
    }
}

#[async_trait]
impl Provider for AnthropicProvider {
    fn id(&self) -> &str {
        "anthropic"
    }
    
    fn name(&self) -> &str {
        "Anthropic"
    }
    
    fn base_url(&self) -> &str {
        "https://api.anthropic.com"
    }
    
    fn api_version(&self) -> &str {
        "2023-06-01"
    }
    
    async fn list_models(&self) -> crate::Result<Vec<ModelInfo>> {
        // Return hardcoded list of available Anthropic models
        Ok(vec![
            ModelInfo {
                id: "claude-3-5-sonnet-20241022".to_string(),
                name: "Claude 3.5 Sonnet".to_string(),
                description: Some("Latest flagship model with improved performance".to_string()),
                capabilities: ModelCapabilities {
                    text_generation: true,
                    tool_calling: true,
                    vision: true,
                    streaming: true,
                    caching: true,
                    json_mode: true,
                    reasoning: true,
                    code_generation: true,
                    multilingual: true,
                    custom: HashMap::new(),
                },
                limits: ModelLimits {
                    max_context_tokens: 200000,
                    max_output_tokens: 8192,
                    max_image_size_bytes: Some(5 * 1024 * 1024),
                    max_images_per_request: Some(20),
                    max_tool_calls: Some(20),
                    rate_limits: RateLimitInfo {
                        requests_per_minute: Some(100),
                        tokens_per_minute: Some(40000),
                        tokens_per_day: None,
                        concurrent_requests: Some(10),
                        current_usage: None,
                    },
                },
                pricing: ModelPricing {
                    input_cost_per_1k: 3.0,
                    output_cost_per_1k: 15.0,
                    cache_read_cost_per_1k: Some(0.3),
                    cache_write_cost_per_1k: Some(3.75),
                    currency: "USD".to_string(),
                },
                release_date: Some(chrono::DateTime::parse_from_rfc3339("2024-10-22T00:00:00Z").unwrap().with_timezone(&chrono::Utc)),
                status: ModelStatus::Active,
            },
            ModelInfo {
                id: "claude-3-5-haiku-20241022".to_string(),
                name: "Claude 3.5 Haiku".to_string(),
                description: Some("Fast and efficient model".to_string()),
                capabilities: ModelCapabilities {
                    text_generation: true,
                    tool_calling: true,
                    vision: true,
                    streaming: true,
                    caching: false,
                    json_mode: true,
                    reasoning: true,
                    code_generation: true,
                    multilingual: true,
                    custom: HashMap::new(),
                },
                limits: ModelLimits {
                    max_context_tokens: 200000,
                    max_output_tokens: 8192,
                    max_image_size_bytes: Some(5 * 1024 * 1024),
                    max_images_per_request: Some(20),
                    max_tool_calls: Some(20),
                    rate_limits: RateLimitInfo {
                        requests_per_minute: Some(200),
                        tokens_per_minute: Some(80000),
                        tokens_per_day: None,
                        concurrent_requests: Some(20),
                        current_usage: None,
                    },
                },
                pricing: ModelPricing {
                    input_cost_per_1k: 1.0,
                    output_cost_per_1k: 5.0,
                    cache_read_cost_per_1k: None,
                    cache_write_cost_per_1k: None,
                    currency: "USD".to_string(),
                },
                release_date: Some(chrono::DateTime::parse_from_rfc3339("2024-10-22T00:00:00Z").unwrap().with_timezone(&chrono::Utc)),
                status: ModelStatus::Active,
            },
        ])
    }
    
    async fn get_model(&self, model_id: &str) -> crate::Result<Arc<dyn Model>> {
        // Create the model
        let model = AnthropicModel::new(
            self.clone(),
            model_id.to_string(),
        );
        
        // Wrap it with provider
        let model_with_provider = AnthropicModelWithProvider::new(model, self.clone());
        
        // Create wrapper that implements both Model and LanguageModel
        let wrapper = AnthropicModelWrapper::new(model_with_provider);
        
        Ok(Arc::new(wrapper))
    }
    
    async fn health_check(&self) -> crate::Result<ProviderHealth> {
        // Check API availability
        let start = std::time::Instant::now();
        
        // Try to authenticate
        match self.auth.get_credentials().await {
            Ok(_) => {
                Ok(ProviderHealth {
                    available: true,
                    latency_ms: Some(start.elapsed().as_millis() as u64),
                    error: None,
                    last_check: chrono::Utc::now(),
                    details: HashMap::new(),
                })
            }
            Err(e) => {
                Ok(ProviderHealth {
                    available: false,
                    latency_ms: Some(start.elapsed().as_millis() as u64),
                    error: Some(e.to_string()),
                    last_check: chrono::Utc::now(),
                    details: HashMap::new(),
                })
            }
        }
    }
    
    fn get_config(&self) -> &ProviderConfig {
        &self.config
    }
    
    async fn update_config(&mut self, config: ProviderConfig) -> crate::Result<()> {
        self.config = config;
        Ok(())
    }
    
    async fn get_rate_limits(&self) -> crate::Result<RateLimitInfo> {
        // Return default rate limits for Anthropic
        Ok(RateLimitInfo {
            requests_per_minute: Some(100),
            tokens_per_minute: Some(40000),
            tokens_per_day: None,
            concurrent_requests: Some(10),
            current_usage: None,
        })
    }
    
    async fn get_usage(&self) -> crate::Result<UsageStats> {
        // Return empty usage stats for now
        Ok(UsageStats {
            total_requests: 0,
            total_tokens: 0,
            total_cost: 0.0,
            currency: "USD".to_string(),
            by_model: HashMap::new(),
            by_period: HashMap::new(),
        })
    }
}


/// Anthropic model implementation
pub struct AnthropicModel {
    id: String,
    provider: AnthropicProvider,
    client: Client,
    auth: Arc<dyn Auth>,
    rate_limiter: Arc<RateLimiter>,
    model_id: String,
}

impl AnthropicModel {
    /// Create new Anthropic model
    pub fn new(provider: AnthropicProvider, model_id: String) -> Self {
        Self {
            id: model_id.clone(),
            client: provider.client.clone(),
            auth: provider.auth.clone(),
            rate_limiter: provider.rate_limiter.clone(),
            model_id,
            provider,
        }
    }
    
    pub fn id(&self) -> &str {
        &self.id
    }
    
    pub fn name(&self) -> &str {
        &self.model_id
    }
    
    pub fn capabilities(&self) -> &ModelCapabilities {
        // Return a static reference to capabilities
        static CAPABILITIES: Lazy<ModelCapabilities> = Lazy::new(|| ModelCapabilities {
            text_generation: true,
            tool_calling: true,
            vision: true,
            streaming: true,
            caching: true,
            json_mode: true,
            reasoning: true,
            code_generation: true,
            multilingual: true,
            custom: HashMap::new(),
        });
        &*CAPABILITIES
    }
    
    pub fn config(&self) -> &ModelConfig {
        // Return a static reference to config
        static CONFIG: Lazy<ModelConfig> = Lazy::new(|| ModelConfig::default());
        &*CONFIG
    }
    
    pub fn metadata(&self) -> &ModelMetadata {
        // Return a static reference to metadata
        static METADATA: Lazy<ModelMetadata> = Lazy::new(|| ModelMetadata {
            family: "claude".to_string(),
            ..Default::default()
        });
        &*METADATA
    }
    
    pub async fn count_tokens(&self, messages: &[Message]) -> crate::Result<u32> {
        // Simple token estimation for now
        let mut total_tokens = 0u32;
        for message in messages {
            match &message.content {
                MessageContent::Text(text) => {
                    // Rough estimate: 1 token per 4 characters
                    total_tokens += (text.len() / 4) as u32;
                }
                MessageContent::Parts(parts) => {
                    for part in parts {
                        match part {
                            MessagePart::Text { text } => {
                                total_tokens += (text.len() / 4) as u32;
                            }
                            MessagePart::Image { .. } => {
                                // Images typically use ~1000 tokens
                                total_tokens += 1000;
                            }
                        }
                    }
                }
            }
        }
        Ok(total_tokens)
    }
    
    pub async fn estimate_cost(&self, input_tokens: u32, output_tokens: u32) -> crate::Result<f64> {
        // Claude pricing (example rates)
        let input_cost_per_1k = match self.model_id.as_str() {
            "claude-3-opus-20240229" => 15.0,
            "claude-3-sonnet-20240229" => 3.0,
            "claude-3-haiku-20240307" => 0.25,
            _ => 3.0, // Default to Sonnet pricing
        };
        
        let output_cost_per_1k = match self.model_id.as_str() {
            "claude-3-opus-20240229" => 75.0,
            "claude-3-sonnet-20240229" => 15.0,
            "claude-3-haiku-20240307" => 1.25,
            _ => 15.0, // Default to Sonnet pricing
        };
        
        let input_cost = (input_tokens as f64 / 1000.0) * input_cost_per_1k;
        let output_cost = (output_tokens as f64 / 1000.0) * output_cost_per_1k;
        
        Ok(input_cost + output_cost)
    }

    /// Simple retry logic for requests  
    async fn execute_with_retry_simple<F, Fut, T>(&self, mut operation: F) -> crate::Result<T>
    where
        F: FnMut() -> Fut,
        Fut: std::future::Future<Output = crate::Result<T>>,
    {
        let mut attempts = 0;
        let max_attempts = 3;
        
        loop {
            self.rate_limiter.acquire().await;
            
            match operation().await {
                Ok(result) => return Ok(result),
                Err(e) => {
                    attempts += 1;
                    
                    if attempts >= max_attempts {
                        return Err(e);
                    }
                    
                    // Check if error is retryable
                    let should_retry = match &e {
                        crate::Error::Network(req_err) => {
                            req_err.status().map_or(true, |status| {
                                status.as_u16() >= 500 || status.as_u16() == 429
                            })
                        },
                        crate::Error::Provider(msg) => {
                            msg.contains("rate_limit") || msg.contains("timeout")
                        },
                        _ => false,
                    };
                    
                    if !should_retry {
                        return Err(e);
                    }
                    
                    // Exponential backoff
                    let delay = Duration::from_millis(1000 * (2_u64.pow(attempts - 1)));
                    sleep(delay).await;
                }
            }
        }
    }
}

#[async_trait]
impl LanguageModel for AnthropicModel {
    async fn generate(
        &self,
        messages: Vec<Message>,
        options: GenerateOptions,
    ) -> crate::Result<GenerateResult> {
        // Get credentials
        let credentials = self.auth.get_credentials().await?;
        let api_key = match credentials {
            AuthCredentials::ApiKey { key } => {
                if !key.starts_with("sk-ant-") {
                    return Err(crate::Error::AuthenticationFailed(
                        "Invalid Anthropic API key format".to_string()
                    ));
                }
                key
            },
            AuthCredentials::OAuth { access_token, .. } => access_token,
            _ => return Err(crate::Error::AuthenticationFailed(
                "Unsupported credential type for Anthropic".to_string()
            )),
        };
        
        // Convert messages to Anthropic format
        let (system_prompt, anthropic_messages) = convert_messages_with_system(messages)?;
        
        // Build request
        let mut request_body = serde_json::json!({
            "model": self.model_id,
            "messages": anthropic_messages,
            "max_tokens": options.max_tokens.unwrap_or(4096),
        });
        
        if let Some(system) = system_prompt {
            request_body["system"] = serde_json::json!(system);
        }
        
        if let Some(temp) = options.temperature {
            request_body["temperature"] = serde_json::json!(temp);
        }
        
        if !options.stop_sequences.is_empty() {
            request_body["stop_sequences"] = serde_json::json!(options.stop_sequences);
        }
        
        if !options.tools.is_empty() {
            request_body["tools"] = serde_json::json!(convert_tools_to_anthropic(options.tools));
        }
        
        // Send request with retry logic
        let client = self.client.clone();
        let response = self.execute_with_retry_simple(|| {
            let client = client.clone();
            let api_key = api_key.clone();
            let request_body = request_body.clone();
            
            Box::pin(async move {
                let response = client
                    .post("https://api.anthropic.com/v1/messages")
                    .header("x-api-key", api_key)
                    .json(&request_body)
                    .send()
                    .await?;
                
                if !response.status().is_success() {
                    let status = response.status();
                    let error_text = response.text().await.unwrap_or_else(|_| "Unknown error".to_string());
                    
                    return Err(crate::Error::Provider(format!(
                        "Anthropic API error ({}): {}", 
                        status.as_u16(), 
                        error_text
                    )));
                }
                
                Ok(response)
            })
        }).await?;
        
        let api_response: AnthropicResponse = response.json().await?;
        
        // Convert response
        Ok(GenerateResult {
            content: extract_content(&api_response),
            tool_calls: extract_tool_calls(&api_response),
            usage: Usage {
                prompt_tokens: api_response.usage.input_tokens,
                completion_tokens: api_response.usage.output_tokens,
                total_tokens: api_response.usage.input_tokens + api_response.usage.output_tokens,
            },
            finish_reason: convert_finish_reason(&api_response.stop_reason),
        })
    }
    
    async fn stream(
        &self,
        messages: Vec<Message>,
        options: StreamOptions,
    ) -> crate::Result<Box<dyn futures::Stream<Item = crate::Result<StreamChunk>> + Send + Unpin>> {
        // Get credentials
        let credentials = self.auth.get_credentials().await?;
        let api_key = match credentials {
            AuthCredentials::ApiKey { key } => {
                if !key.starts_with("sk-ant-") {
                    return Err(crate::Error::AuthenticationFailed(
                        "Invalid Anthropic API key format".to_string()
                    ));
                }
                key
            },
            AuthCredentials::OAuth { access_token, .. } => access_token,
            _ => return Err(crate::Error::AuthenticationFailed(
                "Unsupported credential type for Anthropic".to_string()
            )),
        };
        
        // Convert messages to Anthropic format
        let (system_prompt, anthropic_messages) = convert_messages_with_system(messages)?;
        
        // Build request
        let mut request_body = serde_json::json!({
            "model": self.model_id,
            "messages": anthropic_messages,
            "max_tokens": options.max_tokens.unwrap_or(4096),
            "stream": true
        });
        
        if let Some(system) = system_prompt {
            request_body["system"] = serde_json::json!(system);
        }
        
        if let Some(temp) = options.temperature {
            request_body["temperature"] = serde_json::json!(temp);
        }
        
        if !options.stop_sequences.is_empty() {
            request_body["stop_sequences"] = serde_json::json!(options.stop_sequences);
        }
        
        if !options.tools.is_empty() {
            request_body["tools"] = serde_json::json!(convert_tools_to_anthropic(options.tools));
        }
        
        // Simple request for streaming (no complex retry for streams)
        self.rate_limiter.acquire().await;
        
        let response = self.client
            .post("https://api.anthropic.com/v1/messages")
            .header("x-api-key", api_key)
            .header("accept", "text/event-stream")
            .json(&request_body)
            .send()
            .await?;
        
        if !response.status().is_success() {
            let status = response.status();
            let error_text = response.text().await.unwrap_or_else(|_| "Unknown error".to_string());
            
            return Err(crate::Error::Provider(format!(
                "Anthropic streaming API error ({}): {}", 
                status.as_u16(), 
                error_text
            )));
        }
        
        // Create SSE stream
        let stream = AnthropicStream::new(response.bytes_stream());
        Ok(Box::new(stream))
    }
    
    fn supports_tools(&self) -> bool {
        matches!(self.model_id.as_str(), 
            "claude-3-5-sonnet-20241022" | 
            "claude-3-5-haiku-20241022" | 
            "claude-3-opus-20240229" |
            "claude-3-sonnet-20240229" |
            "claude-3-haiku-20240307"
        )
    }
    
    fn supports_vision(&self) -> bool {
        self.model_id.contains("claude-3")
    }
    
    fn supports_caching(&self) -> bool {
        matches!(self.model_id.as_str(), 
            "claude-3-5-sonnet-20241022" | 
            "claude-3-opus-20240229"
        )
    }
}

// Model info implementation
#[derive(Debug, Clone)]
pub(crate) struct AnthropicModelInfo {
    id: String,
    name: String,
    provider_id: String,
    capabilities: ModelCapabilities,
    config: ModelConfig,
    metadata: ModelMetadata,
}

impl AnthropicModelInfo {
    pub fn new(id: String, name: String) -> Self {
        Self {
            id: id.clone(),
            name,
            provider_id: "anthropic".to_string(),
            capabilities: ModelCapabilities {
                text_generation: true,
                tool_calling: true,
                vision: true,
                streaming: true,
                caching: true,
                json_mode: true,
                reasoning: true,
                code_generation: true,
                multilingual: true,
                custom: HashMap::new(),
            },
            config: ModelConfig {
                model_id: id,
                ..Default::default()
            },
            metadata: ModelMetadata {
                family: "claude".to_string(),
                ..Default::default()
            },
        }
    }
}

#[async_trait]
impl Model for AnthropicModelInfo {
    fn id(&self) -> &str { &self.id }
    fn name(&self) -> &str { &self.name }
    fn provider_id(&self) -> &str { &self.provider_id }
    fn capabilities(&self) -> &ModelCapabilities { &self.capabilities }
    fn config(&self) -> &ModelConfig { &self.config }
    
    async fn generate(
        &self,
        _messages: Vec<Message>,
        _options: GenerateOptions,
    ) -> crate::Result<GenerateResult> {
        Err(crate::Error::Other(anyhow::anyhow!("AnthropicModelInfo does not support generation directly")))
    }
    
    async fn stream(
        &self,
        _messages: Vec<Message>,
        _options: GenerateOptions,
    ) -> crate::Result<Pin<Box<dyn Stream<Item = crate::Result<StreamChunk>> + Send>>> {
        Err(crate::Error::Other(anyhow::anyhow!("AnthropicModelInfo does not support streaming directly")))
    }
    
    async fn count_tokens(&self, _messages: &[Message]) -> crate::Result<u32> {
        Ok(0) // Placeholder
    }
    
    async fn estimate_cost(&self, input_tokens: u32, output_tokens: u32) -> crate::Result<f64> {
        // Simple cost calculation based on Claude pricing
        let input_cost = (input_tokens as f64 / 1000.0) * 3.0;
        let output_cost = (output_tokens as f64 / 1000.0) * 15.0;
        Ok(input_cost + output_cost)
    }
    
    fn metadata(&self) -> &ModelMetadata { &self.metadata }
}

// Response types
#[derive(Deserialize)]
struct AnthropicResponse {
    content: Vec<AnthropicContent>,
    stop_reason: Option<String>,
    usage: AnthropicUsage,
}

#[derive(Deserialize)]
struct AnthropicContent {
    #[serde(rename = "type")]
    content_type: String,
    text: Option<String>,
    name: Option<String>,
    input: Option<serde_json::Value>,
}

#[derive(Debug, Deserialize)]
struct AnthropicUsage {
    input_tokens: u32,
    output_tokens: u32,
}

// Streaming types
#[derive(Debug, Deserialize)]
struct StreamEvent {
    #[serde(rename = "type")]
    event_type: String,
    #[serde(flatten)]
    data: serde_json::Value,
}

#[derive(Debug, Deserialize)]
struct MessageStart {
    message: MessageStartData,
}

#[derive(Debug, Deserialize)]
struct MessageStartData {
    id: String,
    #[serde(rename = "type")]
    message_type: String,
    role: String,
    model: String,
    content: Vec<serde_json::Value>,
    stop_reason: Option<String>,
    stop_sequence: Option<String>,
    usage: AnthropicUsage,
}

#[derive(Debug, Deserialize)]
struct ContentBlockStart {
    index: u32,
    content_block: ContentBlock,
}

#[derive(Debug, Deserialize)]
struct ContentBlock {
    #[serde(rename = "type")]
    block_type: String,
    text: Option<String>,
    name: Option<String>,
    input: Option<serde_json::Value>,
}

#[derive(Debug, Deserialize)]
struct ContentBlockDelta {
    index: u32,
    delta: ContentDelta,
}

#[derive(Debug, Deserialize)]
struct ContentDelta {
    #[serde(rename = "type")]
    delta_type: String,
    text: Option<String>,
    partial_json: Option<String>,
}

#[derive(Debug, Deserialize)]
struct MessageDelta {
    delta: MessageDeltaData,
    usage: AnthropicUsage,
}

#[derive(Debug, Deserialize)]
struct MessageDeltaData {
    stop_reason: Option<String>,
    stop_sequence: Option<String>,
}

// Streaming implementation
#[pin_project]
struct AnthropicStream {
    #[pin]
    inner: futures_util::stream::BoxStream<'static, std::result::Result<Bytes, reqwest::Error>>,
    buffer: String,
    current_tool_calls: Vec<ToolCall>,
    tool_call_buffer: HashMap<u32, (String, String)>, // index -> (name, partial_json)
    finished: bool,
}

impl AnthropicStream {
    fn new(stream: impl Stream<Item = std::result::Result<Bytes, reqwest::Error>> + Send + 'static) -> Self {
        Self {
            inner: stream.boxed(),
            buffer: String::new(),
            current_tool_calls: Vec::new(),
            tool_call_buffer: HashMap::new(),
            finished: false,
        }
    }
    
    fn parse_sse_line(&mut self, line: &str) -> Option<crate::Result<StreamChunk>> {
        if line.is_empty() || line.starts_with(':') {
            return None;
        }
        
        if !line.starts_with("data: ") {
            return None;
        }
        
        let data = &line[6..]; // Remove "data: " prefix
        
        if data == "[DONE]" {
            self.finished = true;
            return Some(Ok(StreamChunk {
                delta: String::new(),
                tool_calls: Vec::new(),
                finish_reason: Some(FinishReason::Stop),
            }));
        }
        
        let event: StreamEvent = match serde_json::from_str(data) {
            Ok(event) => event,
            Err(e) => {
                return Some(Err(crate::Error::Provider(
                    format!("Failed to parse SSE event: {}", e)
                )));
            }
        };
        
        self.process_stream_event(event)
    }
    
    fn process_stream_event(&mut self, event: StreamEvent) -> Option<crate::Result<StreamChunk>> {
        process_stream_event_static(event, &mut self.tool_call_buffer, &mut self.current_tool_calls, &mut self.finished)
    }
}

/// Static function to process SSE lines
fn process_sse_line_static(
    line: &str,
    tool_call_buffer: &mut HashMap<u32, (String, String)>,
    _current_tool_calls: &mut Vec<ToolCall>,
    finished: &mut bool,
) -> Option<crate::Result<StreamChunk>> {
    if line.is_empty() || line.starts_with(':') {
        return None;
    }
    
    if !line.starts_with("data: ") {
        return None;
    }
    
    let data = &line[6..]; // Remove "data: " prefix
    
    if data == "[DONE]" {
        *finished = true;
        return Some(Ok(StreamChunk {
            delta: String::new(),
            tool_calls: Vec::new(),
            finish_reason: Some(FinishReason::Stop),
        }));
    }
    
    let event: StreamEvent = match serde_json::from_str(data) {
        Ok(event) => event,
        Err(e) => {
            return Some(Err(crate::Error::Provider(
                format!("Failed to parse SSE event: {}", e)
            )));
        }
    };
    
    process_stream_event_static(event, tool_call_buffer, _current_tool_calls, finished)
}

/// Static function to process stream events
fn process_stream_event_static(
    event: StreamEvent,
    tool_call_buffer: &mut HashMap<u32, (String, String)>,
    current_tool_calls: &mut Vec<ToolCall>,
    finished: &mut bool,
) -> Option<crate::Result<StreamChunk>> {
        match event.event_type.as_str() {
            "message_start" => {
                // Message initialization - no output yet
                None
            }
            "content_block_start" => {
                if let Ok(block_start) = serde_json::from_value::<ContentBlockStart>(event.data) {
                    if block_start.content_block.block_type == "tool_use" {
                        if let (Some(name), Some(_)) = (&block_start.content_block.name, &block_start.content_block.input) {
                            tool_call_buffer.insert(block_start.index, (name.clone(), String::new()));
                        }
                    }
                }
                None
            }
            "content_block_delta" => {
                if let Ok(delta) = serde_json::from_value::<ContentBlockDelta>(event.data) {
                    match delta.delta.delta_type.as_str() {
                        "text_delta" => {
                            if let Some(text) = delta.delta.text {
                                return Some(Ok(StreamChunk {
                                    delta: text,
                                    tool_calls: Vec::new(),
                                    finish_reason: None,
                                }));
                            }
                        }
                        "input_json_delta" => {
                            if let Some(partial_json) = delta.delta.partial_json {
                                if let Some((_name, existing_json)) = tool_call_buffer.get_mut(&delta.index) {
                                    existing_json.push_str(&partial_json);
                                }
                            }
                        }
                        _ => {}
                    }
                }
                None
            }
            "content_block_stop" => {
                if let Ok(block_stop) = serde_json::from_value::<serde_json::Value>(event.data) {
                    if let Some(index) = block_stop.get("index").and_then(|i| i.as_u64()) {
                        if let Some((name, json_str)) = tool_call_buffer.remove(&(index as u32)) {
                            if let Ok(arguments) = serde_json::from_str::<serde_json::Value>(&json_str) {
                                let tool_call = ToolCall {
                                    id: format!("call_{}", uuid::Uuid::new_v4()),
                                    name,
                                    arguments,
                                };
                                current_tool_calls.push(tool_call.clone());
                                return Some(Ok(StreamChunk {
                                    delta: String::new(),
                                    tool_calls: vec![tool_call],
                                    finish_reason: None,
                                }));
                            }
                        }
                    }
                }
                None
            }
            "message_delta" => {
                if let Ok(msg_delta) = serde_json::from_value::<MessageDelta>(event.data) {
                    if let Some(stop_reason) = msg_delta.delta.stop_reason {
                        let finish_reason = match stop_reason.as_str() {
                            "end_turn" => FinishReason::Stop,
                            "max_tokens" => FinishReason::Length,
                            "tool_use" => FinishReason::ToolCalls,
                            "stop_sequence" => FinishReason::Stop,
                            _ => FinishReason::Stop,
                        };
                        return Some(Ok(StreamChunk {
                            delta: String::new(),
                            tool_calls: Vec::new(),
                            finish_reason: Some(finish_reason),
                        }));
                    }
                }
                None
            }
            "message_stop" => {
                *finished = true;
                Some(Ok(StreamChunk {
                    delta: String::new(),
                    tool_calls: Vec::new(),
                    finish_reason: Some(FinishReason::Stop),
                }))
            }
            "error" => {
                if let Some(error_msg) = event.data.get("error").and_then(|e| e.as_str()) {
                    Some(Err(crate::Error::Provider(format!("Anthropic streaming error: {}", error_msg))))
                } else {
                    Some(Err(crate::Error::Provider("Unknown Anthropic streaming error".to_string())))
                }
            }
            _ => None, // Ignore unknown event types
        }
}

impl Stream for AnthropicStream {
    type Item = crate::Result<StreamChunk>;
    
    fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        let mut this = self.project();
        
        if *this.finished {
            return Poll::Ready(None);
        }
        
        loop {
            match this.inner.as_mut().poll_next(cx) {
                Poll::Ready(Some(Ok(chunk))) => {
                    let chunk_str = String::from_utf8_lossy(&chunk);
                    this.buffer.push_str(&chunk_str);
                    
                    // Process complete lines
                    while let Some(line_end) = this.buffer.find('\n') {
                        let line = this.buffer[..line_end].trim_end_matches('\r').to_string();
                        this.buffer.drain(..=line_end);
                        
                        if let Some(result) = process_sse_line_static(&line, &mut this.tool_call_buffer, &mut this.current_tool_calls, &mut this.finished) {
                            return Poll::Ready(Some(result));
                        }
                    }
                }
                Poll::Ready(Some(Err(e))) => {
                    return Poll::Ready(Some(Err(crate::Error::Other(e.into()))));
                }
                Poll::Ready(None) => {
                    *this.finished = true;
                    return Poll::Ready(None);
                }
                Poll::Pending => return Poll::Pending,
            }
        }
    }
}

// Helper functions
fn convert_messages(messages: Vec<Message>) -> Vec<serde_json::Value> {
    messages.into_iter().filter_map(|msg| {
        // Skip system messages - they're handled separately in Anthropic API
        if matches!(msg.role, MessageRole::System) {
            return None;
        }
        
        let role = match msg.role {
            MessageRole::User => "user",
            MessageRole::Assistant => "assistant",
            MessageRole::Tool => "user", // Tool results are sent as user messages in Anthropic
            MessageRole::System => return None, // Already filtered above
        };
        
        let content = match msg.content {
            MessageContent::Text(text) => {
                if matches!(msg.role, MessageRole::Tool) {
                    // Format tool result
                    serde_json::json!([{
                        "type": "tool_result",
                        "tool_use_id": msg.tool_call_id.unwrap_or_else(|| "unknown".to_string()),
                        "content": text
                    }])
                } else {
                    serde_json::json!(text)
                }
            }
            MessageContent::Parts(parts) => {
                let anthropic_content: Vec<serde_json::Value> = parts.into_iter().map(|part| {
                    match part {
                        super::MessagePart::Text { text } => serde_json::json!({
                            "type": "text",
                            "text": text
                        }),
                        super::MessagePart::Image { image } => {
                            if let Some(base64) = image.base64 {
                                serde_json::json!({
                                    "type": "image",
                                    "source": {
                                        "type": "base64",
                                        "media_type": image.mime_type,
                                        "data": base64
                                    }
                                })
                            } else if let Some(url) = image.url {
                                serde_json::json!({
                                    "type": "image",
                                    "source": {
                                        "type": "url",
                                        "url": url
                                    }
                                })
                            } else {
                                serde_json::json!({
                                    "type": "text",
                                    "text": "[Invalid image data]"
                                })
                            }
                        }
                    }
                }).collect();
                serde_json::json!(anthropic_content)
            }
        };
        
        let mut obj = serde_json::json!({
            "role": role,
            "content": content,
        });
        
        // Add tool calls if present
        if let Some(tool_calls) = &msg.tool_calls {
            if !tool_calls.is_empty() {
                let mut content_array = vec![];
                
                // Add existing content if it's text
                if let serde_json::Value::String(text) = &content {
                    if !text.trim().is_empty() {
                        content_array.push(serde_json::json!({
                            "type": "text",
                            "text": text
                        }));
                    }
                }
                
                // Add tool calls
                for tool_call in tool_calls {
                    content_array.push(serde_json::json!({
                        "type": "tool_use",
                        "id": tool_call.id,
                        "name": tool_call.name,
                        "input": tool_call.arguments
                    }));
                }
                
                obj["content"] = serde_json::json!(content_array);
            }
        }
        
        Some(obj)
    }).collect()
}

/// Convert messages and extract system prompt separately
pub(crate) fn convert_messages_with_system(messages: Vec<Message>) -> crate::Result<(Option<String>, Vec<serde_json::Value>)> {
    let mut system_prompt = None;
    let mut filtered_messages = Vec::new();
    
    for msg in messages {
        match msg.role {
            MessageRole::System => {
                match msg.content {
                    MessageContent::Text(text) => {
                        if system_prompt.is_some() {
                            // Combine multiple system messages
                            let existing = system_prompt.take().unwrap();
                            system_prompt = Some(format!("{} {}", existing, text));
                        } else {
                            system_prompt = Some(text);
                        }
                    }
                    MessageContent::Parts(_) => {
                        return Err(crate::Error::Other(anyhow::anyhow!(
                            "System messages with parts are not supported by Anthropic API"
                        )));
                    }
                }
            }
            _ => {
                filtered_messages.push(msg);
            }
        }
    }
    
    Ok((system_prompt, convert_messages(filtered_messages)))
}

fn convert_tools_to_anthropic(tools: Vec<ToolDefinition>) -> Vec<serde_json::Value> {
    tools.into_iter().map(|tool| {
        serde_json::json!({
            "name": tool.name,
            "description": tool.description,
            "input_schema": tool.parameters,
        })
    }).collect()
}

fn extract_content(response: &AnthropicResponse) -> String {
    response.content.iter()
        .filter_map(|c| c.text.as_ref())
        .cloned()
        .collect::<Vec<_>>()
        .join("")
}

fn extract_tool_calls(response: &AnthropicResponse) -> Vec<ToolCall> {
    response.content.iter()
        .filter(|c| c.content_type == "tool_use")
        .filter_map(|c| {
            Some(ToolCall {
                id: uuid::Uuid::new_v4().to_string(),
                name: c.name.clone()?,
                arguments: c.input.clone()?,
            })
        })
        .collect()
}

fn convert_finish_reason(stop_reason: &Option<String>) -> FinishReason {
    match stop_reason.as_deref() {
        Some("end_turn") => FinishReason::Stop,
        Some("max_tokens") => FinishReason::Length,
        Some("tool_use") => FinishReason::ToolCalls,
        _ => FinishReason::Stop,
    }
}

/// Anthropic model with associated provider
pub struct AnthropicModelWithProvider {
    model: AnthropicModel,
    provider: AnthropicProvider,
}

/// Wrapper that implements both Model and LanguageModel
pub struct AnthropicModelWrapper {
    inner: AnthropicModelWithProvider,
}

impl AnthropicModelWrapper {
    pub fn new(model_with_provider: AnthropicModelWithProvider) -> Self {
        Self { inner: model_with_provider }
    }
}

impl AnthropicModelWithProvider {
    /// Create a new Anthropic model with provider
    pub fn new(model: AnthropicModel, provider: AnthropicProvider) -> Self {
        Self { model, provider }
    }
    
    /// Get a reference to the model
    pub fn model(&self) -> &AnthropicModel {
        &self.model
    }
    
    /// Get a reference to the provider
    pub fn provider(&self) -> &AnthropicProvider {
        &self.provider
    }
}

#[async_trait]
impl Model for AnthropicModelWrapper {
    fn id(&self) -> &str { self.inner.model.id() }
    fn name(&self) -> &str { self.inner.model.name() }
    fn provider_id(&self) -> &str { "anthropic" }
    fn capabilities(&self) -> &ModelCapabilities { self.inner.model.capabilities() }
    fn config(&self) -> &ModelConfig { self.inner.model.config() }
    
    async fn generate(
        &self,
        messages: Vec<Message>,
        options: GenerateOptions,
    ) -> crate::Result<GenerateResult> {
        self.inner.model.generate(messages, options).await
    }
    
    async fn stream(
        &self,
        messages: Vec<Message>,
        options: GenerateOptions,
    ) -> crate::Result<Pin<Box<dyn Stream<Item = crate::Result<StreamChunk>> + Send>>> {
        // Convert GenerateOptions to StreamOptions
        let stream_options = StreamOptions {
            temperature: options.temperature,
            max_tokens: options.max_tokens,
            tools: options.tools,
            stop_sequences: options.stop_sequences,
        };
        
        // Convert Box to Pin<Box>
        let stream = self.inner.model.stream(messages, stream_options).await?;
        Ok(Box::pin(stream))
    }
    
    async fn count_tokens(&self, messages: &[Message]) -> crate::Result<u32> {
        self.inner.model.count_tokens(messages).await
    }
    
    async fn estimate_cost(&self, input_tokens: u32, output_tokens: u32) -> crate::Result<f64> {
        self.inner.model.estimate_cost(input_tokens, output_tokens).await
    }
    
    fn metadata(&self) -> &ModelMetadata {
        self.inner.model.metadata()
    }
}

#[async_trait]
impl LanguageModel for AnthropicModelWrapper {
    async fn generate(
        &self,
        messages: Vec<Message>,
        options: GenerateOptions,
    ) -> crate::Result<GenerateResult> {
        self.inner.generate(messages, options).await
    }
    
    async fn stream(
        &self,
        messages: Vec<Message>,
        options: StreamOptions,
    ) -> crate::Result<Box<dyn futures::Stream<Item = crate::Result<StreamChunk>> + Send + Unpin>> {
        self.inner.stream(messages, options).await
    }
    
    fn supports_tools(&self) -> bool {
        self.inner.supports_tools()
    }
    
    fn supports_vision(&self) -> bool {
        self.inner.supports_vision()
    }
    
    fn supports_caching(&self) -> bool {
        self.inner.supports_caching()
    }
}

#[async_trait]
impl LanguageModel for AnthropicModelWithProvider {
    async fn generate(
        &self,
        messages: Vec<Message>,
        options: GenerateOptions,
    ) -> crate::Result<GenerateResult> {
        self.model.generate(messages, options).await
    }
    
    async fn stream(
        &self,
        messages: Vec<Message>,
        options: StreamOptions,
    ) -> crate::Result<Box<dyn futures::Stream<Item = crate::Result<StreamChunk>> + Send + Unpin>> {
        self.model.stream(messages, options).await
    }
    
    fn supports_tools(&self) -> bool {
        true
    }
    
    fn supports_vision(&self) -> bool {
        true
    }
    
    fn supports_caching(&self) -> bool {
        true
    }
}