rstructor 0.5.0

Get structured, validated data out of LLMs as native Rust structs and enums. Derive a type and rstructor generates the JSON Schema, prompts the model, parses the reply, and retries on validation errors — across OpenAI, Anthropic Claude, Google Gemini, and xAI Grok. The Rust answer to Python's Pydantic + Instructor.
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
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
//! Drive the **real** provider client over a local mock HTTP server (`mockito`),
//! exercising request building, response parsing, and the retry/re-ask loop in
//! `utils.rs` — the code paths `MockClient` (which mocks at the `LLMClient` trait
//! level, above HTTP) structurally cannot reach. No API key or network needed.
//!
//! Targets `OpenAIClient` because it exposes `base_url`, but the request/response
//! shaping and the retry loop it drives are shared by the OpenAI-compatible path.
#![cfg(feature = "openai")]

use rstructor::{
    AnyClient, ApiErrorKind, AttemptKind, AttemptOutcome, Instructor, LLMClient, MediaFile,
    OpenAIClient, RStructorError,
};
use serde::{Deserialize, Serialize};
use serde_json::{Value, json};

struct OpenAiEnvGuard(Option<std::ffi::OsString>);

impl OpenAiEnvGuard {
    fn set_for_test() -> Self {
        let saved = std::env::var_os("OPENAI_API_KEY");
        // SAFETY: no other test in this integration-test binary reads or writes
        // OPENAI_API_KEY.
        unsafe {
            std::env::set_var("OPENAI_API_KEY", "routed-client-test-key");
        }
        Self(saved)
    }
}

struct EnvVarGuard {
    key: &'static str,
    saved: Option<std::ffi::OsString>,
}

impl EnvVarGuard {
    fn set(key: &'static str, value: &str) -> Self {
        let saved = std::env::var_os(key);
        // SAFETY: each compatible-provider key is mutated by only one test in
        // this integration-test binary and restored by this guard.
        unsafe {
            std::env::set_var(key, value);
        }
        Self { key, saved }
    }
}

impl Drop for EnvVarGuard {
    fn drop(&mut self) {
        // SAFETY: restores the key after the only test in this binary that
        // mutates it.
        unsafe {
            match self.saved.take() {
                Some(value) => std::env::set_var(self.key, value),
                None => std::env::remove_var(self.key),
            }
        }
    }
}

impl Drop for OpenAiEnvGuard {
    fn drop(&mut self) {
        // SAFETY: restores the key after the only test in this binary that
        // mutates it.
        unsafe {
            match self.0.take() {
                Some(value) => std::env::set_var("OPENAI_API_KEY", value),
                None => std::env::remove_var("OPENAI_API_KEY"),
            }
        }
    }
}

#[derive(Instructor, Serialize, Deserialize, Debug, PartialEq)]
#[llm(validate = "validate_movie")]
struct Movie {
    title: String,
    year: u16,
}

#[derive(Instructor, Serialize, Deserialize, Debug, PartialEq)]
struct Portfolio {
    portfolio_id: String,
    positions: Vec<Position>,
}

#[derive(Instructor, Serialize, Deserialize, Debug, PartialEq)]
struct Position {
    symbol: String,
    quantity: i64,
}

#[derive(Instructor, Serialize, Deserialize, Debug, PartialEq)]
#[serde(rename_all = "snake_case")]
enum RevenueTrend {
    Rising,
    Falling,
    Flat,
    Mixed,
}

#[derive(Instructor, Serialize, Deserialize, Debug, PartialEq)]
struct MonthlyRevenue {
    month: String,
    revenue_millions: f64,
}

#[derive(Instructor, Serialize, Deserialize, Debug, PartialEq)]
struct RevenueChart {
    title: String,
    monthly_revenue: Vec<MonthlyRevenue>,
    peak_month: String,
    peak_revenue_millions: f64,
    total_revenue_millions: f64,
    overall_trend: RevenueTrend,
    notable_change: String,
}

fn validate_movie(m: &Movie) -> rstructor::Result<()> {
    if m.year < 1888 {
        return Err(RStructorError::ValidationError(
            "year predates cinema".into(),
        ));
    }
    Ok(())
}

/// An OpenAI chat-completion response whose assistant message content is `content`
/// (which, for structured outputs, is the JSON string the client parses into `T`).
fn chat_completion(content: &str) -> String {
    json!({
        "choices": [{
            "message": { "role": "assistant", "content": content },
            "finish_reason": "stop",
        }]
    })
    .to_string()
}

fn chat_completion_with_usage(
    content: Option<&str>,
    model: &str,
    input_tokens: u64,
    output_tokens: u64,
) -> String {
    json!({
        "choices": [{
            "message": { "role": "assistant", "content": content },
            "finish_reason": "stop",
        }],
        "usage": {
            "prompt_tokens": input_tokens,
            "completion_tokens": output_tokens,
            "total_tokens": input_tokens + output_tokens,
        },
        "model": model,
    })
    .to_string()
}

fn client(server: &mockito::Server) -> OpenAIClient {
    OpenAIClient::new("test-key")
        .unwrap()
        .base_url(server.url())
        .model("gpt-4o-mini")
}

#[tokio::test]
async fn materialize_parses_a_real_response() {
    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion(r#"{"title":"Inception","year":2010}"#))
        .expect(1)
        .create_async()
        .await;

    let movie: Movie = client(&server)
        .materialize("Describe Inception")
        .await
        .unwrap();
    assert_eq!(
        movie,
        Movie {
            title: "Inception".into(),
            year: 2010
        }
    );
    m.assert_async().await;
}

#[tokio::test]
async fn default_client_sends_the_recommended_openai_model() {
    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::PartialJson(json!({
            "model": "gpt-5.6-sol",
        })))
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion(
            r#"{"portfolio_id":"HF-ALPHA-001","positions":[{"symbol":"ESU6","quantity":-240}]}"#,
        ))
        .expect(1)
        .create_async()
        .await;

    let portfolio: Portfolio = OpenAIClient::new("test-key")
        .unwrap()
        .base_url(server.url())
        .materialize("Extract the reconciled futures position")
        .await
        .unwrap();

    assert_eq!(portfolio.portfolio_id, "HF-ALPHA-001");
    assert_eq!(portfolio.positions[0].symbol, "ESU6");
    assert_eq!(portfolio.positions[0].quantity, -240);
    request.assert_async().await;
}

#[tokio::test]
async fn routed_client_sends_the_full_custom_model_string() {
    let _env = OpenAiEnvGuard::set_for_test();
    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::PartialJson(json!({
            "model": "vendor/some-model",
        })))
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion(
            r#"{"title":"Provider Routing","year":2026}"#,
        ))
        .expect(1)
        .create_async()
        .await;

    let routed = rstructor::client("openai/vendor/some-model").unwrap();
    let client = match routed {
        AnyClient::OpenAI(client) => client.base_url(server.url()).no_retries(),
        _ => panic!("openai prefix should construct the OpenAI AnyClient variant"),
    };

    let movie: Movie = client
        .materialize("Describe provider routing")
        .await
        .unwrap();

    assert_eq!(movie.title, "Provider Routing");
    request.assert_async().await;
}

#[tokio::test]
async fn ollama_client_sends_to_the_compatible_path_without_authorization() {
    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("POST", "/chat/completions")
        .match_header("authorization", mockito::Matcher::Missing)
        .match_body(mockito::Matcher::PartialJson(json!({
            "model": "llama3.3",
        })))
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion(
            r#"{"title":"Local Inference","year":2026}"#,
        ))
        .expect(1)
        .create_async()
        .await;

    let movie: Movie = OpenAIClient::ollama()
        .unwrap()
        .base_url(server.url())
        .model("llama3.3")
        .no_retries()
        .materialize("Describe local inference")
        .await
        .unwrap();

    assert_eq!(movie.title, "Local Inference");
    request.assert_async().await;
}

#[tokio::test]
async fn lm_studio_client_sends_to_the_compatible_path_without_authorization() {
    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("POST", "/chat/completions")
        .match_header("authorization", mockito::Matcher::Missing)
        .match_body(mockito::Matcher::PartialJson(json!({
            "model": "lmstudio-community/local-model",
        })))
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion(r#"{"title":"Local Studio","year":2026}"#))
        .expect(1)
        .create_async()
        .await;

    let movie: Movie = OpenAIClient::lm_studio()
        .unwrap()
        .base_url(server.url())
        .model("lmstudio-community/local-model")
        .no_retries()
        .materialize("Describe local inference")
        .await
        .unwrap();

    assert_eq!(movie.title, "Local Studio");
    request.assert_async().await;
}

#[tokio::test]
async fn aggregator_client_sends_its_environment_key_as_bearer_auth() {
    let _env = EnvVarGuard::set("OPENROUTER_API_KEY", "openrouter-test-key");
    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("POST", "/chat/completions")
        .match_header("authorization", "Bearer openrouter-test-key")
        .match_body(mockito::Matcher::PartialJson(json!({
            "model": "moonshotai/kimi-k3",
        })))
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion(
            r#"{"title":"Aggregated Inference","year":2026}"#,
        ))
        .expect(1)
        .create_async()
        .await;

    let movie: Movie = OpenAIClient::openrouter()
        .unwrap()
        .base_url(server.url())
        .model("moonshotai/kimi-k3")
        .no_retries()
        .materialize("Describe aggregated inference")
        .await
        .unwrap();

    assert_eq!(movie.title, "Aggregated Inference");
    request.assert_async().await;
}

#[tokio::test]
async fn moonshot_kimi_k3_materializes_a_chart_from_an_inline_png() {
    let _env = EnvVarGuard::set("MOONSHOT_API_KEY", "moonshot-test-key");
    let mut server = mockito::Server::new_async().await;
    let extracted_chart = include_str!("fixtures/structured/kimi_k3_revenue_chart.json");
    let request = server
        .mock("POST", "/chat/completions")
        .match_header("authorization", "Bearer moonshot-test-key")
        .match_body(mockito::Matcher::PartialJson(json!({
            "model": "kimi-k3",
            "temperature": 1.0,
            "messages": [{
                "role": "user",
                "content": [
                    { "type": "text", "text": "Extract the revenue chart." },
                    {
                        "type": "image_url",
                        "image_url": {
                            "url": "data:image/png;base64,iVBORw0KGgo=",
                            "detail": "auto",
                        },
                    },
                ],
            }],
        })))
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion(extracted_chart))
        .expect(1)
        .create_async()
        .await;

    let media = [MediaFile::from_bytes(b"\x89PNG\r\n\x1a\n", "image/png")];
    let chart: RevenueChart = OpenAIClient::moonshot()
        .unwrap()
        .base_url(server.url())
        .model("kimi-k3")
        .temperature(1.0)
        .no_retries()
        .materialize_with_media("Extract the revenue chart.", &media)
        .await
        .unwrap();

    assert_eq!(chart.monthly_revenue.len(), 6);
    assert_eq!(chart.peak_month, "Jun");
    assert_eq!(chart.total_revenue_millions, 23.0);
    assert_eq!(chart.overall_trend, RevenueTrend::Rising);
    request.assert_async().await;
}

#[tokio::test]
async fn any_client_dispatches_attempt_reports_to_the_concrete_provider() {
    let mut server = mockito::Server::new_async().await;
    let response = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(r#"{"title":"Margin Call","year":2011}"#),
            "gpt-4o-mini",
            30,
            9,
        ))
        .expect(1)
        .create_async()
        .await;
    let any: AnyClient = client(&server).into();

    let report = any
        .materialize_with_attempts::<Movie>("a finance film")
        .await
        .unwrap();

    assert_eq!(report.data.title, "Margin Call");
    assert_eq!(report.attempts.len(), 1);
    assert_eq!(report.cumulative_usage.as_ref().unwrap().total_tokens(), 39);
    response.assert_async().await;
}

#[tokio::test]
async fn reask_loop_recovers_from_validation_failure() {
    let mut server = mockito::Server::new_async().await;
    // First response fails the validator; the real re-ask loop must retry with the
    // error fed back into the conversation, then accept the corrected response.
    let bad = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion(r#"{"title":"Old","year":1700}"#))
        .expect(1)
        .create_async()
        .await;
    let good = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion(r#"{"title":"Metropolis","year":1927}"#))
        .expect(1)
        .create_async()
        .await;

    let movie: Movie = client(&server).materialize("a film").await.unwrap();
    assert_eq!(movie.year, 1927);
    bad.assert_async().await;
    good.assert_async().await;
}

#[tokio::test]
async fn reask_feedback_includes_the_nested_decode_path() {
    let mut server = mockito::Server::new_async().await;
    let invalid = include_str!("fixtures/structured/portfolio_invalid_quantity.json");
    let valid = include_str!("fixtures/structured/portfolio_valid.json");

    let bad = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion(invalid))
        .expect(1)
        .create_async()
        .await;
    let good = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::Regex(
            r"\$\.positions\[1\]\.quantity".to_string(),
        ))
        .with_status(200)
        .with_body(chat_completion(valid))
        .expect(1)
        .create_async()
        .await;

    let portfolio: Portfolio = client(&server)
        .materialize("reconcile the portfolio positions")
        .await
        .unwrap();

    assert_eq!(portfolio.portfolio_id, "HF-ALPHA-001");
    assert_eq!(portfolio.positions[1].quantity, -240);
    bad.assert_async().await;
    good.assert_async().await;
}

#[tokio::test]
async fn retryable_status_is_retried() {
    let mut server = mockito::Server::new_async().await;
    // 429 with `Retry-After: 0` → the loop retries immediately, then succeeds.
    let rate_limited = server
        .mock("POST", "/chat/completions")
        .with_status(429)
        .with_header("retry-after", "0")
        .with_body("{}")
        .expect(1)
        .create_async()
        .await;
    let ok = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion(r#"{"title":"Dune","year":2021}"#))
        .expect(1)
        .create_async()
        .await;

    let movie: Movie = client(&server).materialize("a film").await.unwrap();
    assert_eq!(movie.title, "Dune");
    rate_limited.assert_async().await;
    ok.assert_async().await;
}

#[tokio::test]
async fn attempt_report_accumulates_semantic_retry_usage_by_model() {
    let mut server = mockito::Server::new_async().await;
    let invalid = include_str!("fixtures/structured/portfolio_invalid_quantity.json");
    let valid = include_str!("fixtures/structured/portfolio_valid.json");

    let bad = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion_with_usage(
            Some(invalid),
            "risk-router-2026-07-01",
            210,
            35,
        ))
        .expect(1)
        .create_async()
        .await;
    let good = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::Regex(
            r"\$\.positions\[1\]\.quantity".to_string(),
        ))
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(chat_completion_with_usage(
            Some(valid),
            "risk-router-2026-07-15",
            280,
            42,
        ))
        .expect(1)
        .create_async()
        .await;

    let report = client(&server)
        .materialize_with_attempts::<Portfolio>("reconcile the futures book")
        .await
        .unwrap();

    assert_eq!(report.data.portfolio_id, "HF-ALPHA-001");
    assert_eq!(report.attempts.len(), 2);
    assert_eq!(report.attempts[0].kind, AttemptKind::Semantic);
    assert_eq!(report.attempts[1].kind, AttemptKind::Semantic);
    assert!(matches!(
        report.attempts[0].outcome,
        AttemptOutcome::Failed {
            disposition: rstructor::RetryDisposition::Retried,
            ..
        }
    ));
    assert_eq!(report.attempts[1].outcome, AttemptOutcome::Succeeded);
    assert_eq!(
        report.final_usage.as_ref().unwrap().model,
        "risk-router-2026-07-15"
    );

    let cumulative = report.cumulative_usage.unwrap();
    assert_eq!(cumulative.reported_attempts, 2);
    assert_eq!(cumulative.input_tokens, 490);
    assert_eq!(cumulative.output_tokens, 77);
    assert_eq!(
        cumulative.by_model["risk-router-2026-07-01"].total_tokens(),
        245
    );
    assert_eq!(
        cumulative.by_model["risk-router-2026-07-15"].total_tokens(),
        322
    );
    bad.assert_async().await;
    good.assert_async().await;
}

#[tokio::test]
async fn existing_metadata_keeps_final_response_usage_after_reask() {
    let mut server = mockito::Server::new_async().await;
    let invalid = include_str!("fixtures/structured/portfolio_invalid_quantity.json");
    let valid = include_str!("fixtures/structured/portfolio_valid.json");

    let bad = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(invalid),
            "risk-router",
            210,
            35,
        ))
        .expect(1)
        .create_async()
        .await;
    let good = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::Regex(
            r"\$\.positions\[1\]\.quantity".to_string(),
        ))
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(valid),
            "risk-router",
            280,
            42,
        ))
        .expect(1)
        .create_async()
        .await;

    let result = client(&server)
        .materialize_with_metadata::<Portfolio>("reconcile the futures book")
        .await
        .unwrap();

    let usage = result.usage.unwrap();
    assert_eq!(usage.input_tokens, 280);
    assert_eq!(usage.output_tokens, 42);
    bad.assert_async().await;
    good.assert_async().await;
}

#[tokio::test]
async fn earlier_usage_survives_when_success_omits_usage_but_legacy_metadata_stays_final_only() {
    let invalid = include_str!("fixtures/structured/portfolio_invalid_quantity.json");
    let valid = include_str!("fixtures/structured/portfolio_valid.json");

    let mut report_server = mockito::Server::new_async().await;
    let report_bad = report_server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(invalid),
            "risk-router",
            90,
            15,
        ))
        .expect(1)
        .create_async()
        .await;
    let report_good = report_server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::Regex(
            r"\$\.positions\[1\]\.quantity".to_string(),
        ))
        .with_status(200)
        .with_body(chat_completion(valid))
        .expect(1)
        .create_async()
        .await;

    let report = client(&report_server)
        .max_retries(1)
        .materialize_with_attempts::<Portfolio>("reconcile the futures book")
        .await
        .unwrap();

    assert!(report.attempts_complete);
    assert_eq!(report.attempts.len(), 2);
    assert!(report.final_usage.is_none());
    assert!(report.attempts[1].usage.is_none());
    assert_eq!(
        report.cumulative_usage.as_ref().unwrap().total_tokens(),
        105
    );
    report_bad.assert_async().await;
    report_good.assert_async().await;

    let mut legacy_server = mockito::Server::new_async().await;
    let legacy_bad = legacy_server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(invalid),
            "risk-router",
            90,
            15,
        ))
        .expect(1)
        .create_async()
        .await;
    let legacy_good = legacy_server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::Regex(
            r"\$\.positions\[1\]\.quantity".to_string(),
        ))
        .with_status(200)
        .with_body(chat_completion(valid))
        .expect(1)
        .create_async()
        .await;

    let legacy = client(&legacy_server)
        .max_retries(1)
        .materialize_with_metadata::<Portfolio>("reconcile the futures book")
        .await
        .unwrap();

    assert!(legacy.usage.is_none());
    legacy_bad.assert_async().await;
    legacy_good.assert_async().await;
}

#[tokio::test]
async fn retryable_provider_error_is_a_transport_attempt_without_history_mutation() {
    let mut server = mockito::Server::new_async().await;
    let rate_limited = server
        .mock("POST", "/chat/completions")
        .with_status(429)
        .with_header("retry-after", "0")
        .with_body("{}")
        .expect(1)
        .create_async()
        .await;
    let ok = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::Regex(
            r#""messages":\[\{"role":"user""#.to_string(),
        ))
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(r#"{"title":"Dune","year":2021}"#),
            "gpt-4o-mini",
            25,
            8,
        ))
        .expect(1)
        .create_async()
        .await;

    let report = client(&server)
        .materialize_with_attempts::<Movie>("a film")
        .await
        .unwrap();

    assert_eq!(report.attempts.len(), 2);
    assert_eq!(report.attempts[0].kind, AttemptKind::Transport);
    assert!(matches!(
        report.attempts[0].outcome,
        AttemptOutcome::Failed {
            disposition: rstructor::RetryDisposition::Retried,
            ..
        }
    ));
    assert_eq!(report.attempts[1].kind, AttemptKind::Semantic);
    assert_eq!(
        report.cumulative_usage.as_ref().unwrap().reported_attempts,
        1
    );
    rate_limited.assert_async().await;
    ok.assert_async().await;
}

#[tokio::test]
async fn empty_envelope_retains_usage_as_an_unretried_transport_attempt() {
    let mut server = mockito::Server::new_async().await;
    let malformed = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(
            json!({
                "choices": [],
                "usage": {
                    "prompt_tokens": 55,
                    "completion_tokens": 3,
                    "total_tokens": 58,
                },
                "model": "gpt-4o-mini",
            })
            .to_string(),
        )
        .expect(1)
        .create_async()
        .await;

    let failure = client(&server)
        .materialize_with_attempts::<Movie>("a film")
        .await
        .unwrap_err();

    assert!(matches!(
        failure.error().api_error_kind(),
        Some(ApiErrorKind::UnexpectedResponse { .. })
    ));
    assert_eq!(failure.attempts.len(), 1);
    assert_eq!(failure.attempts[0].kind, AttemptKind::Transport);
    assert!(matches!(
        failure.attempts[0].outcome,
        AttemptOutcome::Failed {
            disposition: rstructor::RetryDisposition::NonRetryable,
            ..
        }
    ));
    assert_eq!(
        failure.attempts[0].usage.as_ref().unwrap().total_tokens(),
        58
    );
    assert_eq!(
        failure.cumulative_usage.as_ref().unwrap().total_tokens(),
        58
    );
    malformed.assert_async().await;
}

#[tokio::test]
async fn malformed_usage_with_valid_content_preserves_legacy_fail_fast_error() {
    let mut server = mockito::Server::new_async().await;
    let response = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(
            json!({
                "choices": [{
                    "message": {
                        "role": "assistant",
                        "content": r#"{"title":"Dune","year":2021}"#,
                    },
                    "finish_reason": "stop",
                }],
                "usage": "not-an-object",
                "model": "gpt-4o-mini",
            })
            .to_string(),
        )
        .expect(1)
        .create_async()
        .await;

    let error = client(&server)
        .materialize::<Movie>("a film")
        .await
        .unwrap_err();

    assert!(matches!(error, RStructorError::HttpError(_)));
    response.assert_async().await;
}

#[tokio::test]
async fn malformed_usage_with_invalid_content_is_not_reclassified_as_retryable() {
    let mut server = mockito::Server::new_async().await;
    let invalid = include_str!("fixtures/structured/portfolio_invalid_quantity.json");
    let response = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(
            json!({
                "choices": [{
                    "message": {
                        "role": "assistant",
                        "content": invalid,
                    },
                    "finish_reason": "stop",
                }],
                "usage": "not-an-object",
                "model": "risk-router",
            })
            .to_string(),
        )
        .expect(1)
        .create_async()
        .await;

    let error = client(&server)
        .materialize::<Portfolio>("reconcile the futures book")
        .await
        .unwrap_err();

    assert!(matches!(error, RStructorError::HttpError(_)));
    response.assert_async().await;
}

#[tokio::test]
async fn invalid_request_url_is_preflight_and_records_no_provider_attempt() {
    let failure = OpenAIClient::new("test-key")
        .unwrap()
        .base_url("://invalid-url")
        .materialize_with_attempts::<Movie>("a film")
        .await
        .unwrap_err();

    assert!(matches!(
        failure.error(),
        RStructorError::HttpError(error) if error.is_builder()
    ));
    assert!(failure.attempts.is_empty());
    assert!(failure.cumulative_usage.is_none());
}

#[tokio::test]
async fn media_attempt_report_uses_provider_path_and_retains_usage() {
    use rstructor::MediaFile;

    let mut server = mockito::Server::new_async().await;
    let valid = include_str!("fixtures/structured/portfolio_valid.json");
    let request = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::PartialJson(json!({
            "messages": [{
                "role": "user",
                "content": [
                    { "type": "text", "text": "reconcile the chart" },
                    {
                        "type": "image_url",
                        "image_url": {
                            "url": "data:image/png;base64,YWJj",
                            "detail": "auto",
                        },
                    },
                ],
            }],
        })))
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(valid),
            "vision-risk-router",
            75,
            12,
        ))
        .expect(1)
        .create_async()
        .await;

    let media = [MediaFile::from_bytes(b"abc", "image/png")];
    let report = client(&server)
        .materialize_with_media_and_attempts::<Portfolio>("reconcile the chart", &media)
        .await
        .unwrap();

    assert!(report.attempts_complete);
    assert_eq!(report.attempts.len(), 1);
    assert_eq!(
        report.final_usage.as_ref().unwrap().model,
        "vision-risk-router"
    );
    assert_eq!(report.cumulative_usage.as_ref().unwrap().total_tokens(), 87);
    request.assert_async().await;
}

#[tokio::test]
async fn semantic_exhaustion_exposes_usage_while_legacy_api_keeps_bare_error() {
    let mut report_server = mockito::Server::new_async().await;
    let invalid = include_str!("fixtures/structured/portfolio_invalid_quantity.json");

    let first = report_server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(invalid),
            "risk-router",
            120,
            20,
        ))
        .expect(1)
        .create_async()
        .await;
    let second = report_server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion_with_usage(
            Some(invalid),
            "risk-router",
            160,
            25,
        ))
        .expect(1)
        .create_async()
        .await;

    let failure = client(&report_server)
        .max_retries(1)
        .materialize_with_attempts::<Portfolio>("reconcile")
        .await
        .unwrap_err();

    assert!(matches!(
        failure.error(),
        RStructorError::OutputDecodeError { path, .. }
            if path == "$.positions[1].quantity"
    ));
    assert_eq!(failure.attempts.len(), 2);
    assert_eq!(
        failure.cumulative_usage.as_ref().unwrap().total_tokens(),
        325
    );
    first.assert_async().await;
    second.assert_async().await;

    let mut legacy_server = mockito::Server::new_async().await;
    let legacy_first = legacy_server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion(invalid))
        .expect(1)
        .create_async()
        .await;
    let legacy_second = legacy_server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion(invalid))
        .expect(1)
        .create_async()
        .await;

    let error = client(&legacy_server)
        .max_retries(1)
        .materialize::<Portfolio>("reconcile")
        .await
        .unwrap_err();
    assert!(matches!(
        error,
        RStructorError::OutputDecodeError { ref path, .. }
            if path == "$.positions[1].quantity"
    ));
    legacy_first.assert_async().await;
    legacy_second.assert_async().await;
}

#[tokio::test]
async fn auth_error_is_surfaced_and_not_retried() {
    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .with_status(401)
        .with_body(r#"{"error":{"message":"invalid api key"}}"#)
        .expect(1) // must NOT be retried
        .create_async()
        .await;

    let err = client(&server)
        .materialize::<Movie>("a film")
        .await
        .unwrap_err();
    assert!(
        matches!(
            err.api_error_kind(),
            Some(ApiErrorKind::AuthenticationFailed)
        ),
        "expected AuthenticationFailed, got {err:?}"
    );
    m.assert_async().await;
}

// ---------------------------------------------------------------------------
// generate / generate_with_metadata over the real client (offline_mockito)
// ---------------------------------------------------------------------------

/// `generate_with_metadata` parses the assistant text content and the `usage`
/// block (prompt/completion/total) into a `GenerateResult`, and the request body
/// for plain text generation must NOT carry a `response_format`.
#[tokio::test]
async fn generate_with_metadata_parses_content_and_usage() {
    let mut server = mockito::Server::new_async().await;
    let body = json!({
        "choices": [{
            "message": { "role": "assistant", "content": "hello there" },
            "finish_reason": "stop",
        }],
        "usage": { "prompt_tokens": 3, "completion_tokens": 5, "total_tokens": 8 },
        "model": "gpt-4o-mini",
    })
    .to_string();
    let captured: std::sync::Arc<std::sync::Mutex<Vec<Value>>> =
        std::sync::Arc::new(std::sync::Mutex::new(Vec::new()));
    let sink = captured.clone();
    let m = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            if let Ok(b) = req.utf8_lossy_body()
                && let Ok(v) = serde_json::from_str::<Value>(&b)
            {
                sink.lock().unwrap().push(v);
            }
            true
        })
        .with_status(200)
        .with_body(body)
        .expect(1)
        .create_async()
        .await;

    let result = client(&server).generate_with_metadata("hi").await.unwrap();
    assert_eq!(result.text, "hello there");
    let usage = result.usage.expect("usage should be parsed");
    assert_eq!(usage.input_tokens, 3);
    assert_eq!(usage.output_tokens, 5);
    assert_eq!(usage.total_tokens(), 8);
    m.assert_async().await;

    // Plain text generation must not request a structured `response_format`.
    let bodies = captured.lock().unwrap();
    assert_eq!(bodies.len(), 1, "expected exactly one request");
    assert!(
        bodies[0].get("response_format").is_none(),
        "response_format must be absent for plain generation, got {}",
        bodies[0]
    );
}

/// `generate` returns just the text content; usage is dropped.
#[tokio::test]
async fn generate_returns_text_content() {
    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(chat_completion("plain answer"))
        .expect(1)
        .create_async()
        .await;

    let text = client(&server).generate("hi").await.unwrap();
    assert_eq!(text, "plain answer");
    m.assert_async().await;
}

/// An empty `choices` array must surface as `UnexpectedResponse`, not a panic.
#[tokio::test]
async fn generate_empty_choices_is_unexpected_response() {
    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(json!({ "choices": [] }).to_string())
        .expect(1)
        .create_async()
        .await;

    let err = client(&server).generate("hi").await.unwrap_err();
    assert!(
        matches!(
            err.api_error_kind(),
            Some(ApiErrorKind::UnexpectedResponse { .. })
        ),
        "expected UnexpectedResponse, got {err:?}"
    );
    m.assert_async().await;
}

/// A choice whose message has `content: null` must surface as `UnexpectedResponse`.
#[tokio::test]
async fn generate_null_content_is_unexpected_response() {
    let mut server = mockito::Server::new_async().await;
    let body = json!({
        "choices": [{
            "message": { "role": "assistant", "content": null },
            "finish_reason": "stop",
        }]
    })
    .to_string();
    let m = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(body)
        .expect(1)
        .create_async()
        .await;

    let err = client(&server).generate("hi").await.unwrap_err();
    assert!(
        matches!(
            err.api_error_kind(),
            Some(ApiErrorKind::UnexpectedResponse { .. })
        ),
        "expected UnexpectedResponse, got {err:?}"
    );
    m.assert_async().await;
}

// ---------------------------------------------------------------------------
// generate / run carry attached media in the request body (offline_mockito)
// ---------------------------------------------------------------------------

/// `with_media(..).generate(..)` must include the attached image as an
/// `image_url` content part in the serialized request body — media used to be
/// silently dropped on the plain-text generation path.
#[tokio::test]
async fn generate_request_body_carries_attached_image() {
    use rstructor::{MediaFile, RequestExt};

    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::PartialJson(json!({
            "messages": [{
                "role": "user",
                "content": [
                    { "type": "text", "text": "describe" },
                    {
                        "type": "image_url",
                        "image_url": { "url": "data:image/png;base64,YWJj", "detail": "auto" },
                    },
                ],
            }],
        })))
        .with_status(200)
        .with_body(chat_completion("a red square"))
        .expect(1)
        .create_async()
        .await;

    let media = [MediaFile::from_bytes(b"abc", "image/png")];
    let text = client(&server)
        .with_media(&media)
        .generate("describe")
        .await
        .unwrap();
    assert_eq!(text, "a red square");
    m.assert_async().await;
}

/// `generate_with_media` with an inline PDF must encode it as the documented
/// OpenAI `file` content part (`filename` + base64 `file_data`), not `image_url`.
#[tokio::test]
async fn generate_request_body_carries_attached_pdf_as_file_part() {
    use rstructor::MediaFile;

    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::PartialJson(json!({
            "messages": [{
                "role": "user",
                "content": [
                    { "type": "text", "text": "summarize" },
                    {
                        "type": "file",
                        "file": {
                            "filename": "document.pdf",
                            "file_data": "data:application/pdf;base64,JVBERg==",
                        },
                    },
                ],
            }],
        })))
        .with_status(200)
        .with_body(chat_completion("a summary"))
        .expect(1)
        .create_async()
        .await;

    let media = [MediaFile::from_bytes(b"%PDF", "application/pdf")];
    let text = client(&server)
        .generate_with_media("summarize", &media)
        .await
        .unwrap();
    assert_eq!(text, "a summary");
    m.assert_async().await;
}

/// A URL-based PDF has no chat-completions pathway: `generate_with_media` must
/// fail with a clear error *before* any HTTP request is made.
#[tokio::test]
async fn generate_with_url_pdf_errors_without_sending_request() {
    use rstructor::MediaFile;

    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .expect(0) // the request must never reach the server
        .create_async()
        .await;

    let media = [MediaFile::new(
        "https://example.com/report.pdf",
        "application/pdf",
    )];
    let err = client(&server)
        .generate_with_media("summarize", &media)
        .await
        .unwrap_err();
    assert!(
        err.to_string().contains("URL-based PDF"),
        "expected a clear URL-PDF error, got: {err}"
    );
    m.assert_async().await;
}

// ---------------------------------------------------------------------------
// reasoning_effort + temperature override per model (offline_mockito)
// ---------------------------------------------------------------------------

/// A GPT-5 model with the default thinking level (Medium) sends
/// `reasoning_effort: "medium"` and forces `temperature` to 1.0, even though the
/// configured temperature is 0.0.
#[tokio::test]
async fn gpt5_sends_reasoning_effort_and_forces_temperature_one() {
    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::PartialJson(json!({
            "reasoning_effort": "medium",
            "temperature": 1.0,
        })))
        .with_status(200)
        .with_body(chat_completion("ok"))
        .expect(1)
        .create_async()
        .await;

    // Default temperature is 0.0; reasoning must override it to 1.0 for gpt-5.
    let text = OpenAIClient::new("test-key")
        .unwrap()
        .base_url(server.url())
        .model("gpt-5")
        .generate("hi")
        .await
        .unwrap();
    assert_eq!(text, "ok");
    m.assert_async().await;
}

/// A non-GPT-5 model (gpt-4o-mini) omits `reasoning_effort` entirely and passes
/// the configured temperature through unchanged.
#[tokio::test]
async fn non_gpt5_omits_reasoning_effort_and_passes_temperature_through() {
    let mut server = mockito::Server::new_async().await;
    let captured: std::sync::Arc<std::sync::Mutex<Vec<Value>>> =
        std::sync::Arc::new(std::sync::Mutex::new(Vec::new()));
    let sink = captured.clone();
    let m = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            if let Ok(body) = req.utf8_lossy_body()
                && let Ok(v) = serde_json::from_str::<Value>(&body)
            {
                sink.lock().unwrap().push(v);
            }
            true
        })
        .with_status(200)
        .with_body(chat_completion("ok"))
        .expect(1)
        .create_async()
        .await;

    let text = OpenAIClient::new("test-key")
        .unwrap()
        .base_url(server.url())
        .model("gpt-4o-mini")
        .temperature(0.2)
        .generate("hi")
        .await
        .unwrap();
    assert_eq!(text, "ok");
    m.assert_async().await;

    let bodies = captured.lock().unwrap();
    assert_eq!(bodies.len(), 1, "expected exactly one request");
    let body = &bodies[0];
    assert!(
        body.get("reasoning_effort").is_none(),
        "reasoning_effort must be omitted for non-gpt-5, got {body}"
    );
    assert_eq!(
        body["temperature"],
        json!(0.2),
        "configured temperature must pass through unchanged"
    );
}

// ---------------------------------------------------------------------------
// list_models prefix filter (offline_mockito)
// ---------------------------------------------------------------------------

/// `list_models` keeps only chat-completion model ids (those prefixed
/// `gpt-`) and drops embeddings, whisper, dall-e, and the legacy o-series
/// reasoning models (which reject this client's request parameters).
#[tokio::test]
async fn list_models_keeps_only_chat_models() {
    let mut server = mockito::Server::new_async().await;
    let body = json!({
        "data": [
            { "id": "gpt-4o" },
            { "id": "o3" },
            { "id": "o4-mini" },
            { "id": "o1-pro" },
            { "id": "whisper-1" },
            { "id": "text-embedding-3-small" },
            { "id": "dall-e-3" },
        ]
    })
    .to_string();
    let m = server
        .mock("GET", "/models")
        .with_status(200)
        .with_body(body)
        .expect(1)
        .create_async()
        .await;

    let models = client(&server).list_models().await.unwrap();
    let ids: Vec<&str> = models.iter().map(|m| m.id.as_str()).collect();
    assert_eq!(ids, vec!["gpt-4o"]);
    m.assert_async().await;
}

/// A models response with no `data` key yields an empty list (not an error).
#[tokio::test]
async fn list_models_no_data_returns_empty() {
    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("GET", "/models")
        .with_status(200)
        .with_body("{}")
        .expect(1)
        .create_async()
        .await;

    let models = client(&server).list_models().await.unwrap();
    assert!(models.is_empty(), "expected empty list, got {models:?}");
    m.assert_async().await;
}

// ---------------------------------------------------------------------------
// usage model-name fallback (offline_mockito)
// ---------------------------------------------------------------------------

/// When the completion response omits the `model` field, the parsed usage's
/// model name falls back to the client's configured model.
#[tokio::test]
async fn usage_model_name_falls_back_to_client_model() {
    let mut server = mockito::Server::new_async().await;
    // No "model" field in the response body.
    let body = json!({
        "choices": [{
            "message": { "role": "assistant", "content": "hi" },
            "finish_reason": "stop",
        }],
        "usage": { "prompt_tokens": 1, "completion_tokens": 2, "total_tokens": 3 },
    })
    .to_string();
    let m = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(body)
        .expect(1)
        .create_async()
        .await;

    let result = OpenAIClient::new("test-key")
        .unwrap()
        .base_url(server.url())
        .model("gpt-4o-mini")
        .generate_with_metadata("hi")
        .await
        .unwrap();
    let usage = result.usage.expect("usage should be parsed");
    assert_eq!(usage.model, "gpt-4o-mini");
    m.assert_async().await;
}

// ---------------------------------------------------------------------------
// OpenAI tool-calling loop over the real client (offline_mockito, tools feature)
// ---------------------------------------------------------------------------

/// A chat-completion response in which the assistant requests a single tool call
/// `name(args)` with id `call_id`.
#[cfg(feature = "tools")]
fn tool_call_response(call_id: &str, name: &str, args: &str) -> String {
    json!({
        "choices": [{
            "message": {
                "role": "assistant",
                "content": null,
                "tool_calls": [{
                    "id": call_id,
                    "type": "function",
                    "function": { "name": name, "arguments": args },
                }],
            },
            "finish_reason": "tool_calls",
        }]
    })
    .to_string()
}

/// Build an `add` tool whose closure flips the shared flag when invoked and
/// returns `{sum: a + b}`.
#[cfg(feature = "tools")]
fn recording_add_tool(
    flag: std::sync::Arc<std::sync::atomic::AtomicBool>,
) -> rstructor::FnTool<
    AddArgs,
    impl Fn(AddArgs) -> std::future::Ready<rstructor::Result<Value>> + Clone,
> {
    rstructor::FnTool::new("add", "Add two integers", move |args: AddArgs| {
        flag.store(true, std::sync::atomic::Ordering::SeqCst);
        std::future::ready(Ok(json!({ "sum": args.a + args.b })))
    })
}

#[cfg(feature = "tools")]
#[derive(Instructor, Serialize, Deserialize)]
struct AddArgs {
    #[llm(description = "First addend")]
    a: i64,
    #[llm(description = "Second addend")]
    b: i64,
}

/// GPT-5.6 rejects Chat Completions function tools unless reasoning is disabled.
/// Verify the compatibility override reaches the serialized HTTP request rather
/// than only testing the model-name predicate in isolation.
#[cfg(feature = "tools")]
#[tokio::test]
async fn gpt56_tool_request_disables_reasoning() {
    use rstructor::{RequestExt, Toolbox};
    use std::sync::Arc;
    use std::sync::atomic::AtomicBool;

    let mut server = mockito::Server::new_async().await;
    let captured: Arc<std::sync::Mutex<Option<Value>>> = Arc::new(std::sync::Mutex::new(None));
    let sink = captured.clone();
    let request = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            let body = serde_json::from_str(&req.utf8_lossy_body().unwrap()).unwrap();
            *sink.lock().unwrap() = Some(body);
            true
        })
        .with_status(200)
        .with_body(chat_completion("tools are ready"))
        .expect(1)
        .create_async()
        .await;

    let toolbox = Toolbox::new().with(recording_add_tool(Arc::new(AtomicBool::new(false))));
    let answer = OpenAIClient::new("test-key")
        .unwrap()
        .base_url(server.url())
        .model("gpt-5.6")
        .with_tools(&toolbox)
        .run("say hello")
        .await
        .unwrap();

    assert_eq!(answer, "tools are ready");
    request.assert_async().await;
    let body = captured.lock().unwrap();
    let body = body.as_ref().expect("request body should be captured");
    assert_eq!(body["reasoning_effort"], json!("none"));
    assert_eq!(body["temperature"], json!(1.0));
}

#[cfg(feature = "tools")]
#[tokio::test]
async fn ollama_tool_request_sends_no_authorization_header() {
    use rstructor::{RequestExt, Toolbox};

    let mut server = mockito::Server::new_async().await;
    let request = server
        .mock("POST", "/chat/completions")
        .match_header("authorization", mockito::Matcher::Missing)
        .with_status(200)
        .with_body(chat_completion("local tools are ready"))
        .expect(1)
        .create_async()
        .await;

    let toolbox = Toolbox::new();
    let answer = OpenAIClient::ollama()
        .unwrap()
        .base_url(server.url())
        .model("llama3.3")
        .with_tools(&toolbox)
        .run("say hello")
        .await
        .unwrap();

    assert_eq!(answer, "local tools are ready");
    request.assert_async().await;
}

/// Full OpenAI tool round-trip: the first response asks for a tool call, the loop
/// executes the (real) tool and feeds the result back as a `role: tool` message
/// carrying the original `tool_call_id`, and the second response returns the final
/// text answer.
#[cfg(feature = "tools")]
#[tokio::test]
async fn tool_loop_full_round_trip() {
    use rstructor::{RequestExt, Toolbox};
    use std::sync::Arc;
    use std::sync::atomic::{AtomicBool, Ordering};

    let mut server = mockito::Server::new_async().await;

    // Capture every request body so we can assert the fed-back tool message shape.
    let captured: Arc<std::sync::Mutex<Vec<Value>>> = Arc::new(std::sync::Mutex::new(Vec::new()));

    // First request: no `tool` messages yet -> respond with a tool_call.
    let sink1 = captured.clone();
    let first = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            let v: Value = serde_json::from_str(&req.utf8_lossy_body().unwrap()).unwrap();
            sink1.lock().unwrap().push(v.clone());
            // Match only when no tool result has been fed back yet.
            !messages_contain_tool_role(&v)
        })
        .with_status(200)
        .with_body(tool_call_response("c1", "add", r#"{"a":2,"b":3}"#))
        .expect(1)
        .create_async()
        .await;

    // Second request: a `tool` message is present -> respond with final answer.
    let sink2 = captured.clone();
    let second = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            let v: Value = serde_json::from_str(&req.utf8_lossy_body().unwrap()).unwrap();
            sink2.lock().unwrap().push(v.clone());
            messages_contain_tool_role(&v)
        })
        .with_status(200)
        .with_body(chat_completion("the sum is 5"))
        .expect(1)
        .create_async()
        .await;

    let invoked = Arc::new(AtomicBool::new(false));
    let toolbox = Toolbox::new().with(recording_add_tool(invoked.clone()));

    let answer = client(&server)
        .with_tools(&toolbox)
        .run("add 2 and 3")
        .await
        .unwrap();

    assert_eq!(answer, "the sum is 5");
    assert!(
        invoked.load(Ordering::SeqCst),
        "the real tool closure must have run"
    );
    first.assert_async().await;
    second.assert_async().await;

    // The second request's last message must be the tool result, tagged with the
    // original tool_call_id and containing the computed sum.
    let bodies = captured.lock().unwrap();
    let second_body = bodies
        .iter()
        .find(|v| messages_contain_tool_role(v))
        .expect("a request carrying the tool result must exist");
    let messages = second_body["messages"].as_array().unwrap();
    let tool_msg = messages
        .iter()
        .find(|m| m["role"] == json!("tool"))
        .expect("a role:tool message must be present");
    assert_eq!(tool_msg["tool_call_id"], json!("c1"));
    let content = tool_msg["content"].as_str().unwrap();
    assert!(
        content.contains("\"sum\":5"),
        "tool result content should carry the sum, got {content}"
    );
}

/// Helper: does the request body contain a message with `role: "tool"`?
#[cfg(feature = "tools")]
fn messages_contain_tool_role(body: &Value) -> bool {
    body.get("messages")
        .and_then(Value::as_array)
        .map(|msgs| msgs.iter().any(|m| m.get("role") == Some(&json!("tool"))))
        .unwrap_or(false)
}

/// When the model calls a tool that does not exist in the toolbox, the loop feeds
/// back a `role: tool` message whose content is `{"error":"unknown tool: …"}` and
/// continues; the model then produces a final answer.
#[cfg(feature = "tools")]
#[tokio::test]
async fn tool_loop_unknown_tool_continues() {
    use rstructor::{RequestExt, Toolbox};
    use std::sync::Arc;

    let mut server = mockito::Server::new_async().await;
    let captured: Arc<std::sync::Mutex<Vec<Value>>> = Arc::new(std::sync::Mutex::new(Vec::new()));

    let sink1 = captured.clone();
    let first = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            let v: Value = serde_json::from_str(&req.utf8_lossy_body().unwrap()).unwrap();
            sink1.lock().unwrap().push(v.clone());
            !messages_contain_tool_role(&v)
        })
        .with_status(200)
        // Model calls a tool that is NOT in the toolbox.
        .with_body(tool_call_response("c1", "does_not_exist", "{}"))
        .expect(1)
        .create_async()
        .await;

    let sink2 = captured.clone();
    let second = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            let v: Value = serde_json::from_str(&req.utf8_lossy_body().unwrap()).unwrap();
            sink2.lock().unwrap().push(v.clone());
            messages_contain_tool_role(&v)
        })
        .with_status(200)
        .with_body(chat_completion("recovered"))
        .expect(1)
        .create_async()
        .await;

    let invoked = Arc::new(std::sync::atomic::AtomicBool::new(false));
    let toolbox = Toolbox::new().with(recording_add_tool(invoked.clone()));

    let answer = client(&server)
        .with_tools(&toolbox)
        .run("call a missing tool")
        .await
        .unwrap();

    assert_eq!(answer, "recovered");
    assert!(
        !invoked.load(std::sync::atomic::Ordering::SeqCst),
        "the real add tool must NOT have run for an unknown tool"
    );
    first.assert_async().await;
    second.assert_async().await;

    let bodies = captured.lock().unwrap();
    let second_body = bodies
        .iter()
        .find(|v| messages_contain_tool_role(v))
        .expect("a request carrying the error result must exist");
    let messages = second_body["messages"].as_array().unwrap();
    let tool_msg = messages
        .iter()
        .find(|m| m["role"] == json!("tool"))
        .expect("a role:tool message must be present");
    let content = tool_msg["content"].as_str().unwrap();
    assert!(
        content.contains("unknown tool: does_not_exist"),
        "error content should name the unknown tool, got {content}"
    );
}

/// When a tool's closure returns `Err`, the loop swallows it into a `role: tool`
/// message containing `{"error":…}` and continues to a final answer.
#[cfg(feature = "tools")]
#[tokio::test]
async fn tool_loop_tool_error_is_swallowed() {
    use rstructor::{FnTool, RequestExt, Toolbox};
    use std::sync::Arc;

    let mut server = mockito::Server::new_async().await;
    let captured: Arc<std::sync::Mutex<Vec<Value>>> = Arc::new(std::sync::Mutex::new(Vec::new()));

    let sink1 = captured.clone();
    let first = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            let v: Value = serde_json::from_str(&req.utf8_lossy_body().unwrap()).unwrap();
            sink1.lock().unwrap().push(v.clone());
            !messages_contain_tool_role(&v)
        })
        .with_status(200)
        .with_body(tool_call_response("c1", "boom", r#"{"a":1,"b":1}"#))
        .expect(1)
        .create_async()
        .await;

    let sink2 = captured.clone();
    let second = server
        .mock("POST", "/chat/completions")
        .match_request(move |req| {
            let v: Value = serde_json::from_str(&req.utf8_lossy_body().unwrap()).unwrap();
            sink2.lock().unwrap().push(v.clone());
            messages_contain_tool_role(&v)
        })
        .with_status(200)
        .with_body(chat_completion("handled"))
        .expect(1)
        .create_async()
        .await;

    // A tool that always errors.
    let boom = FnTool::new("boom", "always fails", |_args: AddArgs| {
        std::future::ready(Err(RStructorError::ValidationError(
            "tool blew up".to_string(),
        )))
    });
    let toolbox = Toolbox::new().with(boom);

    let answer = client(&server)
        .with_tools(&toolbox)
        .run("trigger the failing tool")
        .await
        .unwrap();

    assert_eq!(answer, "handled");
    first.assert_async().await;
    second.assert_async().await;

    let bodies = captured.lock().unwrap();
    let second_body = bodies
        .iter()
        .find(|v| messages_contain_tool_role(v))
        .expect("a request carrying the error result must exist");
    let messages = second_body["messages"].as_array().unwrap();
    let tool_msg = messages
        .iter()
        .find(|m| m["role"] == json!("tool"))
        .expect("a role:tool message must be present");
    let content = tool_msg["content"].as_str().unwrap();
    assert!(
        content.contains("error"),
        "swallowed tool error should appear in the content, got {content}"
    );
    assert!(
        content.contains("tool blew up"),
        "the tool's error message should be preserved, got {content}"
    );
}

/// When the model never stops calling tools, the loop gives up after
/// `max_iterations` round-trips and returns a `ValidationError` whose message says
/// it "did not converge" and names the iteration budget.
#[cfg(feature = "tools")]
#[tokio::test]
async fn tool_loop_exhaustion_errors() {
    use rstructor::{RequestExt, Toolbox};
    use std::sync::Arc;

    let mut server = mockito::Server::new_async().await;
    // Every response asks for another tool call -> the loop never converges.
    let always_tool = server
        .mock("POST", "/chat/completions")
        .with_status(200)
        .with_body(tool_call_response("c1", "add", r#"{"a":1,"b":1}"#))
        // max_iterations(2) -> exactly two model round-trips before giving up.
        .expect(2)
        .create_async()
        .await;

    let invoked = Arc::new(std::sync::atomic::AtomicBool::new(false));
    let toolbox = Toolbox::new().with(recording_add_tool(invoked.clone()));

    let err = client(&server)
        .with_tools(&toolbox)
        .max_iterations(2)
        .run("loop forever")
        .await
        .unwrap_err();

    let msg = err.to_string();
    assert!(
        matches!(err, RStructorError::ValidationError(_)),
        "expected ValidationError, got {err:?}"
    );
    assert!(
        msg.contains("did not converge"),
        "error should say it did not converge, got: {msg}"
    );
    assert!(
        msg.contains('2'),
        "error should mention the iteration budget (2), got: {msg}"
    );
    always_tool.assert_async().await;
}

/// `with_tools(..).media(..).run(..)` must include the attached media in the
/// initial user turn of the tool loop's request body — media used to be
/// silently dropped on the `run` path.
#[cfg(feature = "tools")]
#[tokio::test]
async fn tool_run_request_body_carries_attached_media() {
    use rstructor::{MediaFile, RequestExt, Toolbox};
    use std::sync::Arc;

    let mut server = mockito::Server::new_async().await;
    let m = server
        .mock("POST", "/chat/completions")
        .match_body(mockito::Matcher::PartialJson(json!({
            "messages": [{
                "role": "user",
                "content": [
                    { "type": "text", "text": "what is in the image?" },
                    {
                        "type": "image_url",
                        "image_url": { "url": "data:image/png;base64,YWJj", "detail": "auto" },
                    },
                ],
            }],
        })))
        .with_status(200)
        .with_body(chat_completion("a red square"))
        .expect(1)
        .create_async()
        .await;

    let invoked = Arc::new(std::sync::atomic::AtomicBool::new(false));
    let toolbox = Toolbox::new().with(recording_add_tool(invoked.clone()));
    let media = [MediaFile::from_bytes(b"abc", "image/png")];

    let answer = client(&server)
        .with_tools(&toolbox)
        .media(media.to_vec())
        .run("what is in the image?")
        .await
        .unwrap();

    assert_eq!(answer, "a red square");
    m.assert_async().await;
}