modelrelay 6.5.0

Rust SDK for the ModelRelay API
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
//! SDK types for the ModelRelay API.
//!
//! ## Type Strategy
//!
//! This module follows a hybrid approach for API types:
//!
//! - **Generated types** (from `crate::generated`): Used where OpenAPI-generated types
//!   match SDK ergonomics. Re-exported here: `MessageRole`, `Citation`.
//!
//! - **Hand-written types**: Used when:
//!   1. **Different Rust structure needed**: `ContentPart`, `InputItem`, `OutputItem` are
//!      enums in SDK but structs in OpenAPI. Enums provide better pattern matching ergonomics.
//!   2. **Stronger typing**: `RunsCreateResponse`/`RunsGetResponse` use `RunId`/`PlanHash`
//!      newtypes instead of raw `Uuid`/`String` for type safety.
//!   3. **Ergonomic factory methods**: `Tool`, `ToolChoice`, `Usage` have builder-style APIs
//!      that aren't generated.
//!
//! Both approaches produce identical JSON serialization, ensuring wire compatibility.

use std::fmt;

use chrono::{DateTime, Utc};
use serde::de::{self, Deserializer};
use serde::{Deserialize, Serialize};
use serde_json::Value;
use uuid::Uuid;

use crate::errors::{Error, ValidationError};
use crate::identifiers::{ProviderId, TierCode};

// Re-export from generated module (single source of truth)
pub use crate::generated::{Citation, MessageRole, MessageRoleExt};

/// Stop reason returned by the backend and surfaced by `/responses`.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(from = "String", into = "String")]
pub enum StopReason {
    Completed,
    Stop,
    StopSequence,
    EndTurn,
    MaxTokens,
    MaxLength,
    MaxContext,
    ToolCalls,
    TimeLimit,
    ContentFilter,
    Incomplete,
    Unknown,
    Other(String),
}

impl StopReason {
    pub fn as_str(&self) -> &str {
        match self {
            StopReason::Completed => "completed",
            StopReason::Stop => "stop",
            StopReason::StopSequence => "stop_sequence",
            StopReason::EndTurn => "end_turn",
            StopReason::MaxTokens => "max_tokens",
            StopReason::MaxLength => "max_len",
            StopReason::MaxContext => "max_context",
            StopReason::ToolCalls => "tool_calls",
            StopReason::TimeLimit => "time_limit",
            StopReason::ContentFilter => "content_filter",
            StopReason::Incomplete => "incomplete",
            StopReason::Unknown => "unknown",
            StopReason::Other(other) => other.as_str(),
        }
    }
}

impl From<&str> for StopReason {
    fn from(value: &str) -> Self {
        StopReason::from(value.to_string())
    }
}

impl From<String> for StopReason {
    fn from(value: String) -> Self {
        let normalized = value.trim().to_lowercase();
        match normalized.as_str() {
            "completed" => StopReason::Completed,
            "stop" => StopReason::Stop,
            "stop_sequence" => StopReason::StopSequence,
            "end_turn" => StopReason::EndTurn,
            "max_tokens" => StopReason::MaxTokens,
            "max_len" | "length" => StopReason::MaxLength,
            "max_context" => StopReason::MaxContext,
            "tool_calls" => StopReason::ToolCalls,
            "time_limit" => StopReason::TimeLimit,
            "content_filter" => StopReason::ContentFilter,
            "incomplete" => StopReason::Incomplete,
            "unknown" => StopReason::Unknown,
            other => StopReason::Other(other.to_string()),
        }
    }
}

impl From<StopReason> for String {
    fn from(value: StopReason) -> Self {
        value.as_str().to_string()
    }
}

impl fmt::Display for StopReason {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

// MessageRole is now imported from crate::generated
// Extension trait MessageRoleExt provides the as_str() method

/// Model identifier (string wrapper).
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(from = "String", into = "String")]
pub struct Model(String);

impl Model {
    pub fn new(value: impl Into<String>) -> Self {
        Self(value.into())
    }

    pub fn as_str(&self) -> &str {
        self.0.as_str()
    }

    pub fn is_empty(&self) -> bool {
        self.0.trim().is_empty()
    }
}

impl From<&str> for Model {
    fn from(value: &str) -> Self {
        Model::from(value.to_string())
    }
}

impl From<String> for Model {
    fn from(value: String) -> Self {
        Model(value.trim().to_string())
    }
}

impl From<Model> for String {
    fn from(value: Model) -> Self {
        value.0
    }
}

impl fmt::Display for Model {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

/// IANA media type string (e.g., "image/png", "application/pdf").
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(from = "String", into = "String")]
pub struct MimeType(String);

impl MimeType {
    /// PDF document MIME type.
    pub const PDF: &'static str = "application/pdf";
    /// JPEG image MIME type.
    pub const JPEG: &'static str = "image/jpeg";
    /// PNG image MIME type.
    pub const PNG: &'static str = "image/png";
    /// GIF image MIME type.
    pub const GIF: &'static str = "image/gif";
    /// WebP image MIME type.
    pub const WEBP: &'static str = "image/webp";
    /// MP3 audio MIME type.
    pub const MP3: &'static str = "audio/mpeg";
    /// WAV audio MIME type.
    pub const WAV: &'static str = "audio/wav";

    pub fn new(value: impl Into<String>) -> Self {
        Self(value.into())
    }

    pub fn as_str(&self) -> &str {
        self.0.as_str()
    }

    pub fn is_empty(&self) -> bool {
        self.0.trim().is_empty()
    }

    /// Create a PDF MIME type.
    pub fn pdf() -> Self {
        Self(Self::PDF.to_string())
    }

    /// Create a PNG MIME type.
    pub fn png() -> Self {
        Self(Self::PNG.to_string())
    }

    /// Create a JPEG MIME type.
    pub fn jpeg() -> Self {
        Self(Self::JPEG.to_string())
    }
}

impl From<&str> for MimeType {
    fn from(value: &str) -> Self {
        MimeType(value.to_string())
    }
}

impl From<String> for MimeType {
    fn from(value: String) -> Self {
        MimeType(value)
    }
}

impl From<MimeType> for String {
    fn from(value: MimeType) -> Self {
        value.0
    }
}

impl fmt::Display for MimeType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

/// File content within a content part.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "snake_case")]
pub struct FileContent {
    pub data_base64: String,
    pub mime_type: MimeType,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filename: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub size_bytes: Option<i64>,
}

/// Content part within a message.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum ContentPart {
    Text { text: String },
    File { file: FileContent },
}

impl ContentPart {
    pub fn text(text: impl Into<String>) -> Self {
        ContentPart::Text { text: text.into() }
    }

    pub fn file(file: FileContent) -> Self {
        ContentPart::File { file }
    }
}

/// Input item sent to `/responses`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum InputItem {
    Message {
        role: MessageRole,
        content: Vec<ContentPart>,
        #[serde(skip_serializing_if = "Option::is_none")]
        tool_calls: Option<Vec<ToolCall>>,
        #[serde(skip_serializing_if = "Option::is_none")]
        tool_call_id: Option<String>,
    },
}

impl InputItem {
    pub fn message(role: MessageRole, content: impl Into<String>) -> Self {
        InputItem::Message {
            role,
            content: vec![ContentPart::text(content)],
            tool_calls: None,
            tool_call_id: None,
        }
    }

    pub fn system(content: impl Into<String>) -> Self {
        Self::message(MessageRole::System, content)
    }

    pub fn user(content: impl Into<String>) -> Self {
        Self::message(MessageRole::User, content)
    }

    pub fn assistant(content: impl Into<String>) -> Self {
        Self::message(MessageRole::Assistant, content)
    }

    pub fn tool_result(tool_call_id: impl Into<String>, content: impl Into<String>) -> Self {
        InputItem::Message {
            role: MessageRole::Tool,
            content: vec![ContentPart::text(content)],
            tool_calls: None,
            tool_call_id: Some(tool_call_id.into()),
        }
    }
}

/// Output item returned by `/responses`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum OutputItem {
    Message {
        role: MessageRole,
        #[serde(default)]
        content: Vec<ContentPart>,
        #[serde(skip_serializing_if = "Option::is_none")]
        tool_calls: Option<Vec<ToolCall>>,
    },
}

/// Output format configuration (structured outputs).
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct OutputFormat {
    #[serde(rename = "type")]
    pub kind: OutputFormatKind,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub json_schema: Option<JSONSchemaFormat>,
}

impl OutputFormat {
    pub fn text() -> Self {
        Self {
            kind: OutputFormatKind::Text,
            json_schema: None,
        }
    }

    pub fn json_schema(name: impl Into<String>, schema: Value) -> Self {
        Self {
            kind: OutputFormatKind::JsonSchema,
            json_schema: Some(JSONSchemaFormat {
                name: name.into(),
                description: None,
                schema,
                strict: Some(true),
            }),
        }
    }

    pub fn json_schema_with_description(
        name: impl Into<String>,
        description: impl Into<String>,
        schema: Value,
    ) -> Self {
        Self {
            kind: OutputFormatKind::JsonSchema,
            json_schema: Some(JSONSchemaFormat {
                name: name.into(),
                description: Some(description.into()),
                schema,
                strict: Some(true),
            }),
        }
    }

    pub fn is_structured(&self) -> bool {
        self.kind == OutputFormatKind::JsonSchema
    }
}

/// Supported output format types.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(from = "String", into = "String")]
pub enum OutputFormatKind {
    Text,
    JsonSchema,
    Other(String),
}

impl OutputFormatKind {
    pub fn as_str(&self) -> &str {
        match self {
            OutputFormatKind::Text => "text",
            OutputFormatKind::JsonSchema => "json_schema",
            OutputFormatKind::Other(other) => other.as_str(),
        }
    }
}

impl From<&str> for OutputFormatKind {
    fn from(value: &str) -> Self {
        OutputFormatKind::from(value.to_string())
    }
}

impl From<String> for OutputFormatKind {
    fn from(value: String) -> Self {
        let trimmed = value.trim();
        match trimmed.to_lowercase().as_str() {
            "text" => OutputFormatKind::Text,
            "json_schema" => OutputFormatKind::JsonSchema,
            _ => OutputFormatKind::Other(trimmed.to_string()),
        }
    }
}

impl From<OutputFormatKind> for String {
    fn from(value: OutputFormatKind) -> Self {
        value.as_str().to_string()
    }
}

impl fmt::Display for OutputFormatKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

/// JSON schema payload for structured outputs.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct JSONSchemaFormat {
    pub name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    pub schema: Value,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub strict: Option<bool>,
}

// --- Tool Types ---

/// Tool type identifiers.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum ToolType {
    Function,
    XSearch,
    CodeExecution,
}

impl ToolType {
    pub fn as_str(&self) -> &str {
        match self {
            ToolType::Function => "function",
            ToolType::XSearch => "x_search",
            ToolType::CodeExecution => "code_execution",
        }
    }
}

impl fmt::Display for ToolType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

/// Function tool definition.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct FunctionTool {
    pub name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parameters: Option<Value>,
}

/// X/Twitter search configuration.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
pub struct XSearchConfig {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allowed_handles: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub excluded_handles: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub from_date: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub to_date: Option<String>,
}

/// Code execution configuration.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
pub struct CodeExecConfig {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub language: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timeout_ms: Option<i64>,
}

/// A tool available for the model to call.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct Tool {
    #[serde(rename = "type")]
    pub kind: ToolType,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function: Option<FunctionTool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub x_search: Option<XSearchConfig>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub code_execution: Option<CodeExecConfig>,
}

impl Tool {
    /// Create a function tool.
    pub fn function(
        name: impl Into<String>,
        description: Option<String>,
        parameters: Option<Value>,
    ) -> Self {
        Self {
            kind: ToolType::Function,
            function: Some(FunctionTool {
                name: name.into(),
                description,
                parameters,
            }),
            x_search: None,
            code_execution: None,
        }
    }

    /// Create an X/Twitter search tool.
    pub fn x_search(config: XSearchConfig) -> Self {
        Self {
            kind: ToolType::XSearch,
            function: None,
            x_search: Some(config),
            code_execution: None,
        }
    }
}

/// Tool choice type.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum ToolChoiceType {
    Auto,
    Required,
    None,
}

impl ToolChoiceType {
    pub fn as_str(&self) -> &str {
        match self {
            ToolChoiceType::Auto => "auto",
            ToolChoiceType::Required => "required",
            ToolChoiceType::None => "none",
        }
    }
}

impl fmt::Display for ToolChoiceType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

/// Controls how the model responds to tool calls.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct ToolChoice {
    #[serde(rename = "type")]
    pub kind: ToolChoiceType,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function: Option<String>,
}

impl ToolChoice {
    pub fn auto() -> Self {
        Self {
            kind: ToolChoiceType::Auto,
            function: None,
        }
    }

    pub fn required() -> Self {
        Self {
            kind: ToolChoiceType::Required,
            function: None,
        }
    }

    pub fn none() -> Self {
        Self {
            kind: ToolChoiceType::None,
            function: None,
        }
    }
}

/// Function call details in a tool call.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct FunctionCall {
    pub name: String,
    pub arguments: String,
}

/// A tool call made by the model.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct ToolCall {
    pub id: String,
    #[serde(rename = "type")]
    pub kind: ToolType,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function: Option<FunctionCall>,
}

/// Request payload for `POST /responses`.
/// This is internal - users should use `ResponseBuilder` instead.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub(crate) struct ResponseRequest {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) provider: Option<ProviderId>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) model: Option<Model>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) max_output_tokens: Option<u32>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) temperature: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) output_format: Option<OutputFormat>,
    pub(crate) input: Vec<InputItem>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) stop: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) tools: Option<Vec<Tool>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub(crate) tool_choice: Option<ToolChoice>,
}

impl ResponseRequest {
    pub fn validate(&self, require_model: bool) -> Result<(), Error> {
        if require_model && self.model.as_ref().map(|m| m.is_empty()).unwrap_or(true) {
            return Err(Error::Validation(
                ValidationError::new("model is required").with_field("model"),
            ));
        }
        if self.input.is_empty() {
            return Err(Error::Validation(
                ValidationError::new("at least one input item is required").with_field("input"),
            ));
        }
        if let Some(format) = &self.output_format {
            validate_output_format(format)?;
        }
        Ok(())
    }
}

fn validate_output_format(format: &OutputFormat) -> Result<(), Error> {
    match &format.kind {
        OutputFormatKind::Text => Ok(()),
        OutputFormatKind::JsonSchema => {
            let Some(schema) = &format.json_schema else {
                return Err(Error::Validation(
                    ValidationError::new(
                        "output_format.json_schema required when type=json_schema",
                    )
                    .with_field("output_format.json_schema"),
                ));
            };

            if schema.name.trim().is_empty() {
                return Err(Error::Validation(
                    ValidationError::new("output_format.json_schema.name required")
                        .with_field("output_format.json_schema.name"),
                ));
            }
            if schema.schema.is_null() {
                return Err(Error::Validation(
                    ValidationError::new("output_format.json_schema.schema required")
                        .with_field("output_format.json_schema.schema"),
                ));
            }
            if !schema.schema.is_object() {
                return Err(Error::Validation(
                    ValidationError::new("output_format.json_schema.schema must be an object")
                        .with_field("output_format.json_schema.schema"),
                ));
            }
            Ok(())
        }
        OutputFormatKind::Other(other) => Err(Error::Validation(
            ValidationError::new(format!("invalid output_format.type: {}", other))
                .with_field("output_format.type"),
        )),
    }
}

/// Aggregated response returned by `POST /responses`.
#[derive(Debug, Clone, Serialize, PartialEq)]
pub struct Response {
    pub id: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub stop_reason: Option<StopReason>,
    pub model: Model,
    pub output: Vec<OutputItem>,
    pub usage: Usage,
    /// Request identifier echoed by the API (response header).
    #[serde(default, skip_serializing)]
    pub request_id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub provider: Option<ProviderId>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub citations: Option<Vec<Citation>>,
    /// Warnings captured when decoding malformed output items.
    #[serde(skip_serializing_if = "Option::is_none", skip_serializing)]
    pub decoding_warnings: Option<Vec<String>>,
}

/// Aggregate usage for batch responses.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct BatchUsage {
    pub total_input_tokens: i64,
    pub total_output_tokens: i64,
    pub total_requests: i64,
    pub successful_requests: i64,
    pub failed_requests: i64,
}

/// Error details for an individual batch item.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct BatchError {
    pub status: u16,
    pub message: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub detail: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub code: Option<String>,
}

/// Status for a batch item.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum BatchStatus {
    Success,
    Error,
}

/// Result for a single batch item.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct BatchResult {
    pub id: String,
    pub status: BatchStatus,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub response: Option<Response>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub error: Option<BatchError>,
}

/// Response payload for batch responses.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct BatchResponse {
    pub id: String,
    pub results: Vec<BatchResult>,
    pub usage: BatchUsage,
}

impl<'de> Deserialize<'de> for Response {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        let value = Value::deserialize(deserializer)?;
        let obj = value
            .as_object()
            .ok_or_else(|| de::Error::custom("response must be an object"))?;

        let id_value = obj
            .get("id")
            .ok_or_else(|| de::Error::missing_field("id"))?;
        let id: String = serde_json::from_value(id_value.clone()).map_err(de::Error::custom)?;

        let model_value = obj
            .get("model")
            .ok_or_else(|| de::Error::missing_field("model"))?;
        let model: Model =
            serde_json::from_value(model_value.clone()).map_err(de::Error::custom)?;

        let usage_value = obj
            .get("usage")
            .ok_or_else(|| de::Error::missing_field("usage"))?;
        let usage: Usage =
            serde_json::from_value(usage_value.clone()).map_err(de::Error::custom)?;

        let stop_reason = match obj.get("stop_reason") {
            Some(value) => Some(serde_json::from_value(value.clone()).map_err(de::Error::custom)?),
            None => None,
        };

        let provider = match obj.get("provider") {
            Some(value) => Some(serde_json::from_value(value.clone()).map_err(de::Error::custom)?),
            None => None,
        };

        let citations = match obj.get("citations") {
            Some(value) => Some(serde_json::from_value(value.clone()).map_err(de::Error::custom)?),
            None => None,
        };

        let output_value = obj
            .get("output")
            .ok_or_else(|| de::Error::missing_field("output"))?;
        let output_items = output_value
            .as_array()
            .ok_or_else(|| de::Error::custom("output must be an array"))?;

        let mut output = Vec::with_capacity(output_items.len());
        let mut warnings: Vec<String> = Vec::new();

        for (index, item) in output_items.iter().enumerate() {
            let item_obj = match item.as_object() {
                Some(obj) => obj,
                None => {
                    warnings.push(format!("output[{}]: invalid output item", index));
                    continue;
                }
            };

            let item_type = item_obj
                .get("type")
                .and_then(|value| value.as_str())
                .unwrap_or("");
            if item_type.is_empty() {
                warnings.push(format!("output[{}]: missing type", index));
                continue;
            }
            if item_type != "message" {
                warnings.push(format!(
                    "output[{}]: unsupported output item type {}",
                    index, item_type
                ));
                continue;
            }

            let role_value = match item_obj.get("role") {
                Some(value) => value,
                None => {
                    warnings.push(format!("output[{}]: message role missing", index));
                    continue;
                }
            };
            let role: MessageRole = match serde_json::from_value(role_value.clone()) {
                Ok(role) => role,
                Err(err) => {
                    warnings.push(format!("output[{}]: message role invalid: {}", index, err));
                    continue;
                }
            };

            let content = match item_obj.get("content") {
                Some(value) => match serde_json::from_value::<Vec<ContentPart>>(value.clone()) {
                    Ok(content) => content,
                    Err(err) => {
                        warnings.push(format!(
                            "output[{}]: message content invalid: {}",
                            index, err
                        ));
                        continue;
                    }
                },
                None => Vec::new(),
            };

            let tool_calls = match item_obj.get("tool_calls") {
                Some(value) => match serde_json::from_value::<Vec<ToolCall>>(value.clone()) {
                    Ok(calls) => Some(calls),
                    Err(err) => {
                        warnings.push(format!(
                            "output[{}]: message tool_calls invalid: {}",
                            index, err
                        ));
                        continue;
                    }
                },
                None => None,
            };

            output.push(OutputItem::Message {
                role,
                content,
                tool_calls,
            });
        }

        Ok(Response {
            id,
            stop_reason,
            model,
            output,
            usage,
            request_id: None,
            provider,
            citations,
            decoding_warnings: if warnings.is_empty() {
                None
            } else {
                Some(warnings)
            },
        })
    }
}

impl Response {
    /// Returns the concatenated assistant text output, in order.
    ///
    /// This is a client-side convenience that walks `response.output` and:
    /// - includes only output items where `role == assistant`
    /// - includes only `text` content parts
    ///
    /// If the response contains no assistant text, this returns an empty string.
    pub fn text(&self) -> String {
        let mut out = String::new();
        for item in &self.output {
            let OutputItem::Message {
                role,
                content: parts,
                ..
            } = item;
            if *role != MessageRole::Assistant {
                continue;
            }
            for part in parts {
                match part {
                    ContentPart::Text { text } => out.push_str(text),
                    ContentPart::File { .. } => {}
                }
            }
        }
        out
    }

    /// Returns the assistant text content parts as individual chunks, in order.
    ///
    /// This is useful when you want to preserve message/content boundaries instead of
    /// joining everything together.
    pub fn text_chunks(&self) -> Vec<String> {
        let mut out = Vec::new();
        for item in &self.output {
            let OutputItem::Message {
                role,
                content: parts,
                ..
            } = item;
            if *role != MessageRole::Assistant {
                continue;
            }
            for part in parts {
                match part {
                    ContentPart::Text { text } => out.push(text.clone()),
                    ContentPart::File { .. } => {}
                }
            }
        }
        out
    }
}

// Citation is now imported from crate::generated (identical structure)

/// Token usage metadata.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Default)]
pub struct Usage {
    #[serde(default)]
    pub input_tokens: u64,
    #[serde(default)]
    pub output_tokens: u64,
    #[serde(default)]
    pub total_tokens: u64,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
pub struct UsageSummary {
    pub plan: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub plan_type: Option<String>,
    #[serde(default)]
    pub window_start: Option<DateTime<Utc>>,
    #[serde(default)]
    pub window_end: Option<DateTime<Utc>>,
    #[serde(default)]
    pub limit: u64,
    #[serde(default)]
    pub used: u64,
    #[serde(default)]
    pub images: u64,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub actions_limit: Option<u64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub actions_used: Option<u64>,
    #[serde(default)]
    pub remaining: u64,
    #[serde(default)]
    pub state: String,
}

impl Usage {
    /// Prompt tokens counted by the backend.
    pub fn input(&self) -> u64 {
        self.input_tokens
    }

    /// Completion tokens counted by the backend.
    pub fn output(&self) -> u64 {
        self.output_tokens
    }

    /// Total tokens (computed from input/output if the field was omitted).
    pub fn total(&self) -> u64 {
        if self.total_tokens > 0 {
            self.total_tokens
        } else {
            self.input_tokens.saturating_add(self.output_tokens)
        }
    }
}

/// High-level streaming event kinds emitted by the API.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum StreamEventKind {
    MessageStart,
    MessageDelta,
    MessageStop,
    ToolUseStart,
    ToolUseDelta,
    ToolUseStop,
    Ping,
    Custom,
}

impl StreamEventKind {
    pub fn from_event_name(name: &str) -> Self {
        match name {
            "start" => Self::MessageStart,
            "update" => Self::MessageDelta,
            "completion" => Self::MessageStop,
            "tool_use_start" => Self::ToolUseStart,
            "tool_use_delta" => Self::ToolUseDelta,
            "tool_use_stop" => Self::ToolUseStop,
            "ping" => Self::Ping,
            "custom" => Self::Custom,
            _ => Self::Custom,
        }
    }

    pub fn as_str(&self) -> &'static str {
        match self {
            StreamEventKind::MessageStart => "message_start",
            StreamEventKind::MessageDelta => "message_delta",
            StreamEventKind::MessageStop => "message_stop",
            StreamEventKind::ToolUseStart => "tool_use_start",
            StreamEventKind::ToolUseDelta => "tool_use_delta",
            StreamEventKind::ToolUseStop => "tool_use_stop",
            StreamEventKind::Ping => "ping",
            StreamEventKind::Custom => "custom",
        }
    }
}

/// Incremental update to a tool call during streaming.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct ToolCallDelta {
    pub index: u32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
    pub type_: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub function: Option<FunctionCallDelta>,
}

/// Incremental function call data.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct FunctionCallDelta {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub arguments: Option<String>,
}

/// Single SSE event emitted by the streaming proxy.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct StreamEvent {
    pub kind: StreamEventKind,
    pub event: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub data: Option<serde_json::Value>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text_delta: Option<String>,
    /// Incremental tool call update during streaming.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_call_delta: Option<ToolCallDelta>,
    /// Completed tool calls when kind is ToolUseStop or MessageStop.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_calls: Option<Vec<ToolCall>>,
    /// Tool result payload when kind is ToolUseStop.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_result: Option<serde_json::Value>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub response_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub model: Option<Model>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub stop_reason: Option<StopReason>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub usage: Option<Usage>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub request_id: Option<String>,
    /// Unparsed SSE payload string.
    pub raw: String,
}

impl StreamEvent {
    pub fn event_name(&self) -> &str {
        if self.event.is_empty() {
            self.kind.as_str()
        } else {
            &self.event
        }
    }
}

/// Representation of an API key record.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct APIKey {
    pub id: Uuid,
    pub label: String,
    pub kind: String,
    #[serde(rename = "created_at")]
    pub created_at: DateTime<Utc>,
    #[serde(
        default,
        rename = "expires_at",
        skip_serializing_if = "Option::is_none"
    )]
    pub expires_at: Option<DateTime<Utc>>,
    #[serde(
        default,
        rename = "last_used_at",
        skip_serializing_if = "Option::is_none"
    )]
    pub last_used_at: Option<DateTime<Utc>>,
    #[serde(rename = "redacted_key")]
    pub redacted_key: String,
    #[serde(
        default,
        rename = "secret_key",
        skip_serializing_if = "Option::is_none"
    )]
    pub secret_key: Option<String>,
}

/// Request payload for POST /auth/customer-token.
///
/// Requires secret key auth (mr_sk_*). Exactly one of customer_id or
/// customer_external_id must be provided.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct CustomerTokenRequest {
    #[serde(skip_serializing_if = "Option::is_none", rename = "customer_id")]
    pub customer_id: Option<Uuid>,
    #[serde(
        skip_serializing_if = "Option::is_none",
        rename = "customer_external_id"
    )]
    pub customer_external_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none", rename = "ttl_seconds")]
    pub ttl_seconds: Option<u32>,
    /// Tier code for customers without an existing subscription.
    /// When provided, a billing profile is created for the customer with this tier.
    #[serde(skip_serializing_if = "Option::is_none", rename = "tier_code")]
    pub tier_code: Option<String>,
}

impl CustomerTokenRequest {
    pub fn for_customer_id(customer_id: Uuid) -> Self {
        Self {
            customer_id: Some(customer_id),
            customer_external_id: None,
            ttl_seconds: None,
            tier_code: None,
        }
    }

    pub fn for_external_id(customer_external_id: impl Into<String>) -> Self {
        Self {
            customer_id: None,
            customer_external_id: Some(customer_external_id.into()),
            ttl_seconds: None,
            tier_code: None,
        }
    }

    pub fn with_ttl_seconds(mut self, ttl: u32) -> Self {
        self.ttl_seconds = Some(ttl);
        self
    }

    /// Set the tier code for customers without an existing subscription.
    pub fn with_tier_code(mut self, tier_code: impl Into<String>) -> Self {
        self.tier_code = Some(tier_code.into());
        self
    }
}

/// Request to get or create a customer and mint a token.
///
/// This upserts the customer (creating if needed) then mints a bearer token.
/// Use this when you want to ensure the customer exists before minting a token,
/// without needing to handle 404 errors from `customer_token()`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct GetOrCreateCustomerTokenRequest {
    /// Your external customer identifier (required).
    pub external_id: String,
    /// Customer email address (required for customer creation).
    pub email: String,
    /// Tier code for the customer's subscription (required for new customers).
    /// Existing customers use their current tier if not provided.
    #[serde(rename = "tier_code")]
    pub tier_code: String,
    /// Optional customer metadata.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<Value>,
    /// Optional token TTL in seconds (default: 7 days, max: 30 days).
    #[serde(skip_serializing_if = "Option::is_none", rename = "ttl_seconds")]
    pub ttl_seconds: Option<u32>,
}

impl GetOrCreateCustomerTokenRequest {
    /// Create a new request with the required fields.
    pub fn new(
        external_id: impl Into<String>,
        email: impl Into<String>,
        tier_code: impl Into<String>,
    ) -> Self {
        Self {
            external_id: external_id.into(),
            email: email.into(),
            tier_code: tier_code.into(),
            metadata: None,
            ttl_seconds: None,
        }
    }

    /// Set the token TTL in seconds.
    pub fn with_ttl_seconds(mut self, ttl: u32) -> Self {
        self.ttl_seconds = Some(ttl);
        self
    }

    /// Set customer metadata.
    pub fn with_metadata(mut self, metadata: Value) -> Self {
        self.metadata = Some(metadata);
        self
    }

    /// Validate that required fields are present.
    pub fn validate(&self) -> Result<(), Error> {
        if self.external_id.trim().is_empty() {
            return Err(Error::Validation(ValidationError::new(
                "external_id is required",
            )));
        }
        if self.email.trim().is_empty() {
            return Err(Error::Validation(ValidationError::new("email is required")));
        }
        if self.tier_code.trim().is_empty() {
            return Err(Error::Validation(ValidationError::new(
                "tier_code is required",
            )));
        }
        Ok(())
    }
}

/// Short-lived bearer token usable from browser/mobile clients.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct CustomerToken {
    /// The bearer token for authenticating LLM requests.
    pub token: String,
    /// When the token expires.
    pub expires_at: DateTime<Utc>,
    /// Seconds until the token expires (also computable from expires_at).
    pub expires_in: u32,
    /// The project ID this token is scoped to.
    pub project_id: Uuid,
    /// The internal customer ID (UUID).
    /// Optional for BYOB (external billing) projects where customers are not created.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub customer_id: Option<Uuid>,
    /// The external customer ID, when present.
    pub customer_external_id: String,
    /// The tier code for the customer (e.g., "free", "pro", "enterprise").
    /// Optional for BYOB (external billing) projects where customers may not have subscriptions.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tier_code: Option<TierCode>,
}

/// Subscription status for billing integrations.
///
/// Maps to Stripe's subscription statuses with forward-compatible `Unknown` variant.
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum SubscriptionStatusKind {
    Active,
    PastDue,
    Canceled,
    Trialing,
    Incomplete,
    IncompleteExpired,
    Unpaid,
    Paused,
    /// Unknown status for forward compatibility with new Stripe statuses.
    #[serde(other)]
    Unknown,
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn stop_reason_round_trips_and_allows_other() {
        let reason: StopReason = serde_json::from_str("\"end_turn\"").unwrap();
        assert_eq!(reason, StopReason::EndTurn);
        let filtered: StopReason = serde_json::from_str("\"content_filter\"").unwrap();
        assert_eq!(filtered, StopReason::ContentFilter);
        let other: StopReason = serde_json::from_str("\"vendor_reason\"").unwrap();
        assert!(matches!(other, StopReason::Other(val) if val == "vendor_reason"));
        let serialized = serde_json::to_string(&StopReason::MaxLength).unwrap();
        assert_eq!(serialized, "\"max_len\"");
    }

    #[test]
    fn model_round_trip_and_trim() {
        let model: Model = serde_json::from_str("\" gpt-4o-mini \"").unwrap();
        assert_eq!(model.as_str(), "gpt-4o-mini");
        let other_model: Model = serde_json::from_str("\"my/model\"").unwrap();
        assert_eq!(other_model.as_str(), "my/model");
    }

    #[test]
    fn responses_request_validation_guards_required_fields() {
        // Empty model fails validation when required
        let req = ResponseRequest {
            provider: None,
            model: Some(Model::from("")),
            input: vec![InputItem::user("hi")],
            max_output_tokens: None,
            temperature: None,
            output_format: None,
            stop: None,
            tools: None,
            tool_choice: None,
        };
        assert!(req.validate(true).is_err());

        // Empty input fails validation
        let req = ResponseRequest {
            provider: None,
            model: Some(Model::from("gpt-4o-mini")),
            input: Vec::new(),
            max_output_tokens: None,
            temperature: None,
            output_format: None,
            stop: None,
            tools: None,
            tool_choice: None,
        };
        assert!(req.validate(true).is_err());

        // Valid request passes validation
        let req = ResponseRequest {
            provider: None,
            model: Some(Model::from("gpt-4o-mini")),
            input: vec![InputItem::user("hi")],
            max_output_tokens: None,
            temperature: None,
            output_format: None,
            stop: None,
            tools: None,
            tool_choice: None,
        };
        assert!(req.validate(true).is_ok());
        let json = serde_json::to_value(&req).unwrap();
        assert_eq!(
            json.get("model").and_then(|v| v.as_str()),
            Some("gpt-4o-mini")
        );
    }

    fn response_with_output(output: Vec<OutputItem>) -> Response {
        Response {
            id: "resp_test".to_string(),
            stop_reason: None,
            model: Model::from("test-model"),
            output,
            usage: Usage::default(),
            request_id: None,
            provider: None,
            citations: None,
            decoding_warnings: None,
        }
    }

    #[test]
    fn response_text_empty_output() {
        let response = response_with_output(Vec::new());
        assert_eq!(response.text(), "");
        assert_eq!(response.text_chunks(), Vec::<String>::new());
    }

    #[test]
    fn response_text_ignores_non_assistant_messages() {
        let response = response_with_output(vec![
            OutputItem::Message {
                role: MessageRole::User,
                content: vec![ContentPart::text("user text")],
                tool_calls: None,
            },
            OutputItem::Message {
                role: MessageRole::Tool,
                content: vec![ContentPart::text("tool output")],
                tool_calls: None,
            },
        ]);
        assert_eq!(response.text(), "");
        assert_eq!(response.text_chunks(), Vec::<String>::new());
    }

    #[test]
    fn response_text_preserves_order_across_assistant_output_items() {
        let response = response_with_output(vec![
            OutputItem::Message {
                role: MessageRole::Assistant,
                content: vec![ContentPart::text("a")],
                tool_calls: None,
            },
            OutputItem::Message {
                role: MessageRole::System,
                content: vec![ContentPart::text("ignored")],
                tool_calls: None,
            },
            OutputItem::Message {
                role: MessageRole::Assistant,
                content: vec![ContentPart::text("b")],
                tool_calls: None,
            },
        ]);
        assert_eq!(
            response.text_chunks(),
            vec!["a".to_string(), "b".to_string()]
        );
        assert_eq!(response.text(), "ab");
    }

    #[test]
    fn response_text_preserves_order_across_multiple_text_parts() {
        let response = response_with_output(vec![OutputItem::Message {
            role: MessageRole::Assistant,
            content: vec![ContentPart::text("hello "), ContentPart::text("world")],
            tool_calls: None,
        }]);
        assert_eq!(
            response.text_chunks(),
            vec!["hello ".to_string(), "world".to_string()]
        );
        assert_eq!(response.text(), "hello world");
    }

    #[test]
    fn response_text_tool_call_only_messages_yield_empty() {
        let response = response_with_output(vec![OutputItem::Message {
            role: MessageRole::Assistant,
            content: Vec::new(),
            tool_calls: Some(vec![ToolCall {
                id: "call_1".to_string(),
                kind: ToolType::Function,
                function: None,
            }]),
        }]);
        assert_eq!(response.text(), "");
        assert_eq!(response.text_chunks(), Vec::<String>::new());
    }

    #[test]
    fn response_decode_allows_missing_content_without_warning() {
        let json = r#"
        {
          "id": "resp_1",
          "output": [
            {
              "type": "message",
              "role": "assistant",
              "tool_calls": [
                { "id": "call_1", "type": "function", "function": { "name": "do", "arguments": "{}" } }
              ]
            }
          ],
          "stop_reason": "stop",
          "model": "gpt-4o",
          "usage": { "input_tokens": 1, "output_tokens": 2, "total_tokens": 3 }
        }
        "#;
        let response: Response = serde_json::from_str(json).unwrap();
        assert_eq!(response.output.len(), 1);
        assert!(response.decoding_warnings.is_none());
    }

    #[test]
    fn response_decode_records_warning_for_missing_role() {
        let json = r#"
        {
          "id": "resp_2",
          "output": [
            {
              "type": "message",
              "content": [{ "type": "text", "text": "hi" }]
            }
          ],
          "stop_reason": "stop",
          "model": "gpt-4o",
          "usage": { "input_tokens": 1, "output_tokens": 2, "total_tokens": 3 }
        }
        "#;
        let response: Response = serde_json::from_str(json).unwrap();
        assert_eq!(response.output.len(), 0);
        assert_eq!(response.decoding_warnings.as_ref().map(Vec::len), Some(1));
    }
}