llm-sdk-rs 0.3.0

A Rust library that enables the development of applications that can interact with different language models through a unified interface.
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
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
#![allow(clippy::enum_variant_names)]
#![allow(clippy::struct_field_names)]
#![allow(clippy::doc_markdown)]
#![allow(clippy::too_many_lines)]

use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::collections::HashMap;

#[derive(Serialize, Deserialize)]
pub struct CreateResponseAllOf3 {
    /// Context management configuration for this request.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub context_management: Option<Vec<ContextManagementParam>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub conversation: Option<ConversationParam>,
    /// Specify additional output data to include in the model response.
    /// Currently supported values are:
    /// - `web_search_call.action.sources`: Include the sources of the web
    ///   search tool call.
    /// - `code_interpreter_call.outputs`: Includes the outputs of python code
    ///   execution in code interpreter tool call items.
    /// - `computer_call_output.output.image_url`: Include image urls from the
    ///   computer call output.
    /// - `file_search_call.results`: Include the search results of the file
    ///   search tool call.
    /// - `message.input_image.image_url`: Include image urls from the input
    ///   message.
    /// - `message.output_text.logprobs`: Include logprobs with assistant
    ///   messages.
    /// - `reasoning.encrypted_content`: Includes an encrypted version of
    ///   reasoning tokens in reasoning item outputs. This enables reasoning
    ///   items to be used in multi-turn conversations when using the Responses
    ///   API statelessly (like when the `store` parameter is set to `false`, or
    ///   when an organization is enrolled in the zero data retention program).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub include: Option<Vec<IncludeEnum>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub input: Option<InputParam>,
    /// A system (or developer) message inserted into the model's context.
    ///
    /// When using along with `previous_response_id`, the instructions from a
    /// previous response will not be carried over to the next response.
    /// This makes it simple to swap out system (or developer) messages in
    /// new responses.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub instructions: Option<String>,
    /// Whether to allow the model to run tool calls in parallel.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parallel_tool_calls: Option<bool>,
    /// Whether to store the generated model response for later retrieval via
    /// API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub store: Option<bool>,
    /// If set to true, the model response data will be streamed to the client
    /// as it is generated using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).
    /// See the [Streaming section
    /// below](/docs/api-reference/responses-streaming)
    /// for more information.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub stream: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub stream_options: Option<ResponseStreamOptions>,
}

#[derive(Serialize, Deserialize)]
pub struct CreateResponse {
    #[serde(flatten)]
    pub create_model_response_properties: CreateModelResponseProperties,
    #[serde(flatten)]
    pub response_properties: ResponseProperties,
    #[serde(flatten)]
    pub create_response_all_of_3: CreateResponseAllOf3,
}

#[derive(Serialize, Deserialize)]
pub struct ResponseAllOf3 {
    /// Unix timestamp (in seconds) of when this Response was completed.
    /// Only present when the status is `completed`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub completed_at: Option<f64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub conversation: Option<Conversation2>,
    /// Unix timestamp (in seconds) of when this Response was created.
    pub created_at: f64,
    pub error: ResponseError,
    /// Unique identifier for this Response.
    pub id: String,
    /// Details about why the response is incomplete.
    pub incomplete_details: Option<ResponseAllOf3IncompleteDetails>,
    /// A system (or developer) message inserted into the model's context.
    ///
    /// When using along with `previous_response_id`, the instructions from a
    /// previous response will not be carried over to the next response.
    /// This makes it simple to swap out system (or developer) messages in
    /// new responses.
    pub instructions: Option<ResponseAllOf3Instructions>,
    /// The object type of this resource - always set to `response`.
    pub object: ResponseAllOf3Object,
    /// An array of content items generated by the model.
    ///
    /// - The length and order of items in the `output` array is dependent on
    ///   the model's response.
    /// - Rather than accessing the first item in the `output` array and
    ///   assuming it's an `assistant` message with the content generated by the
    ///   model, you might consider using the `output_text` property where
    ///   supported in SDKs.
    pub output: Vec<OutputItem>,
    /// SDK-only convenience property that contains the aggregated text output
    /// from all `output_text` items in the `output` array, if any are present.
    /// Supported in the Python and JavaScript SDKs.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_text: Option<String>,
    /// Whether to allow the model to run tool calls in parallel.
    pub parallel_tool_calls: bool,
    /// The status of the response generation. One of `completed`, `failed`,
    /// `in_progress`, `cancelled`, `queued`, or `incomplete`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<ResponseAllOf3Status>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub usage: Option<ResponseUsage>,
}

/// Details about why the response is incomplete.
#[derive(Serialize, Deserialize)]
pub struct ResponseAllOf3IncompleteDetails {
    /// The reason why the response is incomplete.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<ResponseAllOf3IncompleteDetailsReason>,
}

/// The reason why the response is incomplete.
#[derive(Serialize, Deserialize)]
pub enum ResponseAllOf3IncompleteDetailsReason {
    #[serde(rename = "max_output_tokens")]
    MaxOutputTokens,
    #[serde(rename = "content_filter")]
    ContentFilter,
}

/// A text input to the model, equivalent to a text input with the
/// `developer` role.
pub type ResponseAllOf3InstructionsString = Option<String>;

/// A list of one or many input items to the model, containing
/// different content types.
pub type ResponseAllOf3InstructionsArray = Option<Vec<InputItem>>;

/// A system (or developer) message inserted into the model's context.
///
/// When using along with `previous_response_id`, the instructions from a
/// previous response will not be carried over to the next response. This makes
/// it simple to swap out system (or developer) messages in new responses.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum ResponseAllOf3Instructions {
    ResponseAllOf3InstructionsString(ResponseAllOf3InstructionsString),
    ResponseAllOf3InstructionsArray(ResponseAllOf3InstructionsArray),
}

/// The object type of this resource - always set to `response`.
#[derive(Serialize, Deserialize)]
pub enum ResponseAllOf3Object {
    #[serde(rename = "response")]
    Response,
}

/// The status of the response generation. One of `completed`, `failed`,
/// `in_progress`, `cancelled`, `queued`, or `incomplete`.
#[derive(Serialize, Deserialize)]
pub enum ResponseAllOf3Status {
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "failed")]
    Failed,
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "cancelled")]
    Cancelled,
    #[serde(rename = "queued")]
    Queued,
    #[serde(rename = "incomplete")]
    Incomplete,
}

#[derive(Serialize, Deserialize)]
pub struct Response {
    #[serde(flatten)]
    pub model_response_properties: ModelResponseProperties,
    #[serde(flatten)]
    pub response_properties: ResponseProperties,
    #[serde(flatten)]
    pub response_all_of_3: ResponseAllOf3,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum ResponseStreamEvent {
    #[serde(rename = "response.audio.delta")]
    ResponseAudioDelta(ResponseAudioDeltaEvent),
    #[serde(rename = "response.audio.done")]
    ResponseAudioDone(ResponseAudioDoneEvent),
    #[serde(rename = "response.audio.transcript.delta")]
    ResponseAudioTranscriptDelta(ResponseAudioTranscriptDeltaEvent),
    #[serde(rename = "response.audio.transcript.done")]
    ResponseAudioTranscriptDone(ResponseAudioTranscriptDoneEvent),
    #[serde(rename = "response.code_interpreter_call_code.delta")]
    ResponseCodeInterpreterCallCodeDelta(ResponseCodeInterpreterCallCodeDeltaEvent),
    #[serde(rename = "response.code_interpreter_call_code.done")]
    ResponseCodeInterpreterCallCodeDone(ResponseCodeInterpreterCallCodeDoneEvent),
    #[serde(rename = "response.code_interpreter_call.completed")]
    ResponseCodeInterpreterCallCompleted(ResponseCodeInterpreterCallCompletedEvent),
    #[serde(rename = "response.code_interpreter_call.in_progress")]
    ResponseCodeInterpreterCallInProgress(ResponseCodeInterpreterCallInProgressEvent),
    #[serde(rename = "response.code_interpreter_call.interpreting")]
    ResponseCodeInterpreterCallInterpreting(ResponseCodeInterpreterCallInterpretingEvent),
    #[serde(rename = "response.completed")]
    ResponseCompleted(ResponseCompletedEvent),
    #[serde(rename = "response.content_part.added")]
    ResponseContentPartAdded(ResponseContentPartAddedEvent),
    #[serde(rename = "response.content_part.done")]
    ResponseContentPartDone(ResponseContentPartDoneEvent),
    #[serde(rename = "response.created")]
    ResponseCreated(ResponseCreatedEvent),
    #[serde(rename = "error")]
    Error(ResponseErrorEvent),
    #[serde(rename = "response.file_search_call.completed")]
    ResponseFileSearchCallCompleted(ResponseFileSearchCallCompletedEvent),
    #[serde(rename = "response.file_search_call.in_progress")]
    ResponseFileSearchCallInProgress(ResponseFileSearchCallInProgressEvent),
    #[serde(rename = "response.file_search_call.searching")]
    ResponseFileSearchCallSearching(ResponseFileSearchCallSearchingEvent),
    #[serde(rename = "response.function_call_arguments.delta")]
    ResponseFunctionCallArgumentsDelta(ResponseFunctionCallArgumentsDeltaEvent),
    #[serde(rename = "response.function_call_arguments.done")]
    ResponseFunctionCallArgumentsDone(ResponseFunctionCallArgumentsDoneEvent),
    #[serde(rename = "response.in_progress")]
    ResponseInProgress(ResponseInProgressEvent),
    #[serde(rename = "response.failed")]
    ResponseFailed(ResponseFailedEvent),
    #[serde(rename = "response.incomplete")]
    ResponseIncomplete(ResponseIncompleteEvent),
    #[serde(rename = "response.output_item.added")]
    ResponseOutputItemAdded(ResponseOutputItemAddedEvent),
    #[serde(rename = "response.output_item.done")]
    ResponseOutputItemDone(ResponseOutputItemDoneEvent),
    #[serde(rename = "response.reasoning_summary_part.added")]
    ResponseReasoningSummaryPartAdded(ResponseReasoningSummaryPartAddedEvent),
    #[serde(rename = "response.reasoning_summary_part.done")]
    ResponseReasoningSummaryPartDone(ResponseReasoningSummaryPartDoneEvent),
    #[serde(rename = "response.reasoning_summary_text.delta")]
    ResponseReasoningSummaryTextDelta(ResponseReasoningSummaryTextDeltaEvent),
    #[serde(rename = "response.reasoning_summary_text.done")]
    ResponseReasoningSummaryTextDone(ResponseReasoningSummaryTextDoneEvent),
    #[serde(rename = "response.reasoning_text.delta")]
    ResponseReasoningTextDelta(ResponseReasoningTextDeltaEvent),
    #[serde(rename = "response.reasoning_text.done")]
    ResponseReasoningTextDone(ResponseReasoningTextDoneEvent),
    #[serde(rename = "response.refusal.delta")]
    ResponseRefusalDelta(ResponseRefusalDeltaEvent),
    #[serde(rename = "response.refusal.done")]
    ResponseRefusalDone(ResponseRefusalDoneEvent),
    #[serde(rename = "response.output_text.delta")]
    ResponseOutputTextDelta(ResponseTextDeltaEvent),
    #[serde(rename = "response.output_text.done")]
    ResponseOutputTextDone(ResponseTextDoneEvent),
    #[serde(rename = "response.web_search_call.completed")]
    ResponseWebSearchCallCompleted(ResponseWebSearchCallCompletedEvent),
    #[serde(rename = "response.web_search_call.in_progress")]
    ResponseWebSearchCallInProgress(ResponseWebSearchCallInProgressEvent),
    #[serde(rename = "response.web_search_call.searching")]
    ResponseWebSearchCallSearching(ResponseWebSearchCallSearchingEvent),
    #[serde(rename = "response.image_generation_call.completed")]
    ResponseImageGenerationCallCompleted(ResponseImageGenCallCompletedEvent),
    #[serde(rename = "response.image_generation_call.generating")]
    ResponseImageGenerationCallGenerating(ResponseImageGenCallGeneratingEvent),
    #[serde(rename = "response.image_generation_call.in_progress")]
    ResponseImageGenerationCallInProgress(ResponseImageGenCallInProgressEvent),
    #[serde(rename = "response.image_generation_call.partial_image")]
    ResponseImageGenerationCallPartialImage(ResponseImageGenCallPartialImageEvent),
    #[serde(rename = "response.mcp_call_arguments.delta")]
    ResponseMcpCallArgumentsDelta(ResponseMCPCallArgumentsDeltaEvent),
    #[serde(rename = "response.mcp_call_arguments.done")]
    ResponseMcpCallArgumentsDone(ResponseMCPCallArgumentsDoneEvent),
    #[serde(rename = "response.mcp_call.completed")]
    ResponseMcpCallCompleted(ResponseMCPCallCompletedEvent),
    #[serde(rename = "response.mcp_call.failed")]
    ResponseMcpCallFailed(ResponseMCPCallFailedEvent),
    #[serde(rename = "response.mcp_call.in_progress")]
    ResponseMcpCallInProgress(ResponseMCPCallInProgressEvent),
    #[serde(rename = "response.mcp_list_tools.completed")]
    ResponseMcpListToolsCompleted(ResponseMCPListToolsCompletedEvent),
    #[serde(rename = "response.mcp_list_tools.failed")]
    ResponseMcpListToolsFailed(ResponseMCPListToolsFailedEvent),
    #[serde(rename = "response.mcp_list_tools.in_progress")]
    ResponseMcpListToolsInProgress(ResponseMCPListToolsInProgressEvent),
    #[serde(rename = "response.output_text.annotation.added")]
    ResponseOutputTextAnnotationAdded(ResponseOutputTextAnnotationAddedEvent),
    #[serde(rename = "response.queued")]
    ResponseQueued(ResponseQueuedEvent),
    #[serde(rename = "response.custom_tool_call_input.delta")]
    ResponseCustomToolCallInputDelta(ResponseCustomToolCallInputDeltaEvent),
    #[serde(rename = "response.custom_tool_call_input.done")]
    ResponseCustomToolCallInputDone(ResponseCustomToolCallInputDoneEvent),
}

#[derive(Serialize, Deserialize)]
pub struct CreateModelResponsePropertiesAllOf2 {
    /// An integer between 0 and 20 specifying the number of most likely tokens
    /// to return at each token position, each with an associated log
    /// probability.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub top_logprobs: Option<i64>,
}

#[derive(Serialize, Deserialize)]
pub struct CreateModelResponseProperties {
    #[serde(flatten)]
    pub model_response_properties: ModelResponseProperties,
    #[serde(flatten)]
    pub create_model_response_properties_all_of_2: CreateModelResponsePropertiesAllOf2,
}

#[derive(Serialize, Deserialize)]
pub struct ResponseProperties {
    /// Whether to run the model response in the background.
    /// [Learn more](/docs/guides/background).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub background: Option<bool>,
    /// An upper bound for the number of tokens that can be generated for a
    /// response, including visible output tokens and [reasoning
    /// tokens](/docs/guides/reasoning).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_output_tokens: Option<i64>,
    /// The maximum number of total calls to built-in tools that can be
    /// processed in a response. This maximum number applies across all built-in
    /// tool calls, not per individual tool. Any further attempts to call a tool
    /// by the model will be ignored.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_tool_calls: Option<i64>,
    /// Model ID used to generate the response, like `gpt-4o` or `o3`. OpenAI
    /// offers a wide range of models with different capabilities, performance
    /// characteristics, and price points. Refer to the [model
    /// guide](/docs/models) to browse and compare available models.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub model: Option<ModelIdsResponses>,
    /// The unique ID of the previous response to the model. Use this to
    /// create multi-turn conversations. Learn more about
    /// [conversation state](/docs/guides/conversation-state). Cannot be used in
    /// conjunction with `conversation`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub previous_response_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prompt: Option<Prompt>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reasoning: Option<Reasoning>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<ResponseTextParam>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_choice: Option<ToolChoiceParam>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tools: Option<ToolsArray>,
    /// The truncation strategy to use for the model response.
    /// - `auto`: If the input to this Response exceeds the model's context
    ///   window size, the model will truncate the response to fit the context
    ///   window by dropping items from the beginning of the conversation.
    /// - `disabled` (default): If the input size will exceed the context window
    ///   size for a model, the request will fail with a 400 error.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub truncation: Option<ResponsePropertiesTruncation>,
}

/// The truncation strategy to use for the model response.
/// - `auto`: If the input to this Response exceeds the model's context window
///   size, the model will truncate the response to fit the context window by
///   dropping items from the beginning of the conversation.
/// - `disabled` (default): If the input size will exceed the context window
///   size for a model, the request will fail with a 400 error.
#[derive(Serialize, Deserialize)]
pub enum ResponsePropertiesTruncation {
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "disabled")]
    Disabled,
}

#[derive(Serialize, Deserialize)]
pub struct ContextManagementParam {
    /// Token threshold at which compaction should be triggered for this entry.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub compact_threshold: Option<i64>,
    /// The context management entry type. Currently only 'compaction' is
    /// supported.
    pub r#type: String,
}

/// The unique ID of the conversation.
pub type ConversationParamString = Option<String>;

/// The conversation that this response belongs to. Items from this conversation
/// are prepended to `input_items` for this response request. Input items and
/// output items from this response are automatically added to this conversation
/// after this response completes.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum ConversationParam {
    ConversationParamString(ConversationParamString),
    ConversationParam2(ConversationParam2),
}

/// Specify additional output data to include in the model response. Currently
/// supported values are:
/// - `web_search_call.action.sources`: Include the sources of the web search
///   tool call.
/// - `code_interpreter_call.outputs`: Includes the outputs of python code
///   execution in code interpreter tool call items.
/// - `computer_call_output.output.image_url`: Include image urls from the
///   computer call output.
/// - `file_search_call.results`: Include the search results of the file search
///   tool call.
/// - `message.input_image.image_url`: Include image urls from the input
///   message.
/// - `message.output_text.logprobs`: Include logprobs with assistant messages.
/// - `reasoning.encrypted_content`: Includes an encrypted version of reasoning
///   tokens in reasoning item outputs. This enables reasoning items to be used
///   in multi-turn conversations when using the Responses API statelessly (like
///   when the `store` parameter is set to `false`, or when an organization is
///   enrolled in the zero data retention program).
#[derive(Serialize, Deserialize)]
pub enum IncludeEnum {
    #[serde(rename = "file_search_call.results")]
    FileSearchCallResults,
    #[serde(rename = "web_search_call.results")]
    WebSearchCallResults,
    #[serde(rename = "web_search_call.action.sources")]
    WebSearchCallActionSources,
    #[serde(rename = "message.input_image.image_url")]
    MessageInputImageImageUrl,
    #[serde(rename = "computer_call_output.output.image_url")]
    ComputerCallOutputOutputImageUrl,
    #[serde(rename = "code_interpreter_call.outputs")]
    CodeInterpreterCallOutputs,
    #[serde(rename = "reasoning.encrypted_content")]
    ReasoningEncryptedContent,
    #[serde(rename = "message.output_text.logprobs")]
    MessageOutputTextLogprobs,
}

/// A text input to the model, equivalent to a text input with the
/// `user` role.
pub type InputParamString = Option<String>;

/// A list of one or many input items to the model, containing
/// different content types.
pub type InputParamArray = Option<Vec<InputItem>>;

/// Text, image, or file inputs to the model, used to generate a response.
///
/// Learn more:
/// - [Text inputs and outputs](/docs/guides/text)
/// - [Image inputs](/docs/guides/images)
/// - [File inputs](/docs/guides/pdf-files)
/// - [Conversation state](/docs/guides/conversation-state)
/// - [Function calling](/docs/guides/function-calling)
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum InputParam {
    InputParamString(InputParamString),
    InputParamArray(InputParamArray),
}

/// Options for streaming responses. Only set this when you set `stream: true`.
#[derive(Serialize, Deserialize)]
pub struct ResponseStreamOptionsValue {
    /// When true, stream obfuscation will be enabled. Stream obfuscation adds
    /// random characters to an `obfuscation` field on streaming delta events to
    /// normalize payload sizes as a mitigation to certain side-channel attacks.
    /// These obfuscation fields are included by default, but add a small amount
    /// of overhead to the data stream. You can set `include_obfuscation` to
    /// false to optimize for bandwidth if you trust the network links between
    /// your application and the OpenAI API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub include_obfuscation: Option<bool>,
}

pub type ResponseStreamOptions = Option<Option<ResponseStreamOptionsValue>>;

#[derive(Serialize, Deserialize)]
pub struct ModelResponseProperties {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<Metadata>,
    /// Used by OpenAI to cache responses for similar requests to optimize your
    /// cache hit rates. Replaces the `user` field. [Learn
    /// more](/docs/guides/prompt-caching).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prompt_cache_key: Option<String>,
    /// The retention policy for the prompt cache. Set to `24h` to enable
    /// extended prompt caching, which keeps cached prefixes active for longer,
    /// up to a maximum of 24 hours. [Learn
    /// more](/docs/guides/prompt-caching#prompt-cache-retention).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prompt_cache_retention: Option<ModelResponsePropertiesPromptCacheRetention>,
    /// A stable identifier used to help detect users of your application that
    /// may be violating OpenAI's usage policies. The IDs should be a string
    /// that uniquely identifies each user, with a maximum length of 64
    /// characters. We recommend hashing their username or email address, in
    /// order to avoid sending us any identifying information. [Learn
    /// more](/docs/guides/safety-best-practices#safety-identifiers).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub safety_identifier: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub service_tier: Option<ServiceTier>,
    /// What sampling temperature to use, between 0 and 2. Higher values like
    /// 0.8 will make the output more random, while lower values like 0.2 will
    /// make it more focused and deterministic. We generally recommend
    /// altering this or `top_p` but not both.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub temperature: Option<f64>,
    /// An integer between 0 and 20 specifying the number of most likely tokens
    /// to return at each token position, each with an associated log
    /// probability.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub top_logprobs: Option<i64>,
    /// An alternative to sampling with temperature, called nucleus sampling,
    /// where the model considers the results of the tokens with top_p
    /// probability mass. So 0.1 means only the tokens comprising the top
    /// 10% probability mass are considered.
    ///
    /// We generally recommend altering this or `temperature` but not both.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub top_p: Option<f64>,
    /// This field is being replaced by `safety_identifier` and
    /// `prompt_cache_key`. Use `prompt_cache_key` instead to maintain caching
    /// optimizations. A stable identifier for your end-users.
    /// Used to boost cache hit rates by better bucketing similar requests and
    /// to help OpenAI detect and prevent abuse. [Learn
    /// more](/docs/guides/safety-best-practices#safety-identifiers).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user: Option<String>,
}

/// The retention policy for the prompt cache. Set to `24h` to enable extended
/// prompt caching, which keeps cached prefixes active for longer, up to a
/// maximum of 24 hours. [Learn
/// more](/docs/guides/prompt-caching#prompt-cache-retention).
#[derive(Serialize, Deserialize)]
pub enum ModelResponsePropertiesPromptCacheRetention {
    #[serde(rename = "in-memory")]
    InMemory,
    #[serde(rename = "24h")]
    N24H,
}

/// The conversation that this response belonged to. Input items and output
/// items from this response were automatically added to this conversation.
#[derive(Serialize, Deserialize)]
pub struct Conversation2 {
    /// The unique ID of the conversation that this response was associated
    /// with.
    pub id: String,
}

/// An error object returned when the model fails to generate a Response.
#[derive(Serialize, Deserialize)]
pub struct ResponseErrorValue {
    pub code: ResponseErrorCode,
    /// A human-readable description of the error.
    pub message: String,
}

pub type ResponseError = Option<Option<ResponseErrorValue>>;

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum InputItem {
    EasyInputMessage(EasyInputMessage),
    Item(Item),
    ItemReferenceParam(ItemReferenceParam),
}

#[derive(Serialize)]
#[serde(tag = "type")]
pub enum OutputItem {
    #[serde(rename = "message")]
    Message(OutputMessage),
    #[serde(rename = "file_search_call")]
    FileSearchCall(FileSearchToolCall),
    #[serde(rename = "function_call")]
    FunctionCall(FunctionToolCall),
    #[serde(rename = "web_search_call")]
    WebSearchCall(WebSearchToolCall),
    #[serde(rename = "computer_call")]
    ComputerCall(ComputerToolCall),
    #[serde(rename = "reasoning")]
    Reasoning(ReasoningItem),
    #[serde(rename = "tool_search_call")]
    ToolSearchCall(ToolSearchCall),
    #[serde(rename = "tool_search_output")]
    ToolSearchOutput(ToolSearchOutput),
    #[serde(rename = "compaction")]
    Compaction(CompactionBody),
    #[serde(rename = "image_generation_call")]
    ImageGenerationCall(ImageGenToolCall),
    #[serde(rename = "code_interpreter_call")]
    CodeInterpreterCall(CodeInterpreterToolCall),
    #[serde(rename = "local_shell_call")]
    LocalShellCall(LocalShellToolCall),
    #[serde(rename = "shell_call")]
    ShellCall(FunctionShellCall),
    #[serde(rename = "shell_call_output")]
    ShellCallOutput(FunctionShellCallOutput),
    #[serde(rename = "apply_patch_call")]
    ApplyPatchCall(ApplyPatchToolCall),
    #[serde(rename = "apply_patch_call_output")]
    ApplyPatchCallOutput(ApplyPatchToolCallOutput),
    #[serde(rename = "mcp_call")]
    McpCall(MCPToolCall),
    #[serde(rename = "mcp_list_tools")]
    McpListTools(MCPListTools),
    #[serde(rename = "mcp_approval_request")]
    McpApprovalRequest(MCPApprovalRequest),
    #[serde(rename = "custom_tool_call")]
    CustomToolCall(CustomToolCall),
}

impl<'de> Deserialize<'de> for OutputItem {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let value = Value::deserialize(deserializer)?;
        let type_str = value
            .get("type")
            .and_then(Value::as_str)
            .ok_or_else(|| serde::de::Error::missing_field("type"))?;

        match type_str {
            "message" => serde_json::from_value(value)
                .map(Self::Message)
                .map_err(serde::de::Error::custom),
            "file_search_call" => serde_json::from_value(value)
                .map(Self::FileSearchCall)
                .map_err(serde::de::Error::custom),
            "function_call" => serde_json::from_value(value)
                .map(Self::FunctionCall)
                .map_err(serde::de::Error::custom),
            "web_search_call" => serde_json::from_value(value)
                .map(Self::WebSearchCall)
                .map_err(serde::de::Error::custom),
            "computer_call" => serde_json::from_value(value)
                .map(Self::ComputerCall)
                .map_err(serde::de::Error::custom),
            "reasoning" => serde_json::from_value(value)
                .map(Self::Reasoning)
                .map_err(serde::de::Error::custom),
            "tool_search_call" => serde_json::from_value(value)
                .map(Self::ToolSearchCall)
                .map_err(serde::de::Error::custom),
            "tool_search_output" => serde_json::from_value(value)
                .map(Self::ToolSearchOutput)
                .map_err(serde::de::Error::custom),
            "compaction" => serde_json::from_value(value)
                .map(Self::Compaction)
                .map_err(serde::de::Error::custom),
            "image_generation_call" => serde_json::from_value(value)
                .map(Self::ImageGenerationCall)
                .map_err(serde::de::Error::custom),
            "code_interpreter_call" => serde_json::from_value(value)
                .map(Self::CodeInterpreterCall)
                .map_err(serde::de::Error::custom),
            "local_shell_call" => serde_json::from_value(value)
                .map(Self::LocalShellCall)
                .map_err(serde::de::Error::custom),
            "shell_call" => serde_json::from_value(value)
                .map(Self::ShellCall)
                .map_err(serde::de::Error::custom),
            "shell_call_output" => serde_json::from_value(value)
                .map(Self::ShellCallOutput)
                .map_err(serde::de::Error::custom),
            "apply_patch_call" => serde_json::from_value(value)
                .map(Self::ApplyPatchCall)
                .map_err(serde::de::Error::custom),
            "apply_patch_call_output" => serde_json::from_value(value)
                .map(Self::ApplyPatchCallOutput)
                .map_err(serde::de::Error::custom),
            "mcp_call" => serde_json::from_value(value)
                .map(Self::McpCall)
                .map_err(serde::de::Error::custom),
            "mcp_list_tools" => serde_json::from_value(value)
                .map(Self::McpListTools)
                .map_err(serde::de::Error::custom),
            "mcp_approval_request" => serde_json::from_value(value)
                .map(Self::McpApprovalRequest)
                .map_err(serde::de::Error::custom),
            "custom_tool_call" => serde_json::from_value(value)
                .map(Self::CustomToolCall)
                .map_err(serde::de::Error::custom),
            _ => Err(serde::de::Error::unknown_variant(
                type_str,
                &[
                    "message",
                    "file_search_call",
                    "function_call",
                    "web_search_call",
                    "computer_call",
                    "reasoning",
                    "tool_search_call",
                    "tool_search_output",
                    "compaction",
                    "image_generation_call",
                    "code_interpreter_call",
                    "local_shell_call",
                    "shell_call",
                    "shell_call_output",
                    "apply_patch_call",
                    "apply_patch_call_output",
                    "mcp_call",
                    "mcp_list_tools",
                    "mcp_approval_request",
                    "custom_tool_call",
                ],
            )),
        }
    }
}

/// Represents token usage details including input tokens, output tokens,
/// a breakdown of output tokens, and the total tokens used.
#[derive(Serialize, Deserialize)]
pub struct ResponseUsage {
    /// The number of input tokens.
    pub input_tokens: i64,
    /// A detailed breakdown of the input tokens.
    pub input_tokens_details: ResponseUsageInputTokensDetails,
    /// The number of output tokens.
    pub output_tokens: i64,
    /// A detailed breakdown of the output tokens.
    pub output_tokens_details: ResponseUsageOutputTokensDetails,
    /// The total number of tokens used.
    pub total_tokens: i64,
}

/// A detailed breakdown of the input tokens.
#[derive(Serialize, Deserialize)]
pub struct ResponseUsageInputTokensDetails {
    /// The number of tokens that were retrieved from the cache.
    /// [More on prompt caching](/docs/guides/prompt-caching).
    pub cached_tokens: i64,
}

/// A detailed breakdown of the output tokens.
#[derive(Serialize, Deserialize)]
pub struct ResponseUsageOutputTokensDetails {
    /// The number of reasoning tokens.
    pub reasoning_tokens: i64,
}

/// Emitted when there is a partial audio response.
#[derive(Serialize, Deserialize)]
pub struct ResponseAudioDeltaEvent {
    /// A chunk of Base64 encoded response audio bytes.
    pub delta: String,
    /// A sequence number for this chunk of the stream response.
    pub sequence_number: i64,
}

/// Emitted when the audio response is complete.
#[derive(Serialize, Deserialize)]
pub struct ResponseAudioDoneEvent {
    /// The sequence number of the delta.
    pub sequence_number: i64,
}

/// Emitted when there is a partial transcript of audio.
#[derive(Serialize, Deserialize)]
pub struct ResponseAudioTranscriptDeltaEvent {
    /// The partial transcript of the audio response.
    pub delta: String,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when the full audio transcript is completed.
#[derive(Serialize, Deserialize)]
pub struct ResponseAudioTranscriptDoneEvent {
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a partial code snippet is streamed by the code interpreter.
#[derive(Serialize, Deserialize)]
pub struct ResponseCodeInterpreterCallCodeDeltaEvent {
    /// The partial code snippet being streamed by the code interpreter.
    pub delta: String,
    /// The unique identifier of the code interpreter tool call item.
    pub item_id: String,
    /// The index of the output item in the response for which the code is being
    /// streamed.
    pub output_index: i64,
    /// The sequence number of this event, used to order streaming events.
    pub sequence_number: i64,
}

/// Emitted when the code snippet is finalized by the code interpreter.
#[derive(Serialize, Deserialize)]
pub struct ResponseCodeInterpreterCallCodeDoneEvent {
    /// The final code snippet output by the code interpreter.
    pub code: String,
    /// The unique identifier of the code interpreter tool call item.
    pub item_id: String,
    /// The index of the output item in the response for which the code is
    /// finalized.
    pub output_index: i64,
    /// The sequence number of this event, used to order streaming events.
    pub sequence_number: i64,
}

/// Emitted when the code interpreter call is completed.
#[derive(Serialize, Deserialize)]
pub struct ResponseCodeInterpreterCallCompletedEvent {
    /// The unique identifier of the code interpreter tool call item.
    pub item_id: String,
    /// The index of the output item in the response for which the code
    /// interpreter call is completed.
    pub output_index: i64,
    /// The sequence number of this event, used to order streaming events.
    pub sequence_number: i64,
}

/// Emitted when a code interpreter call is in progress.
#[derive(Serialize, Deserialize)]
pub struct ResponseCodeInterpreterCallInProgressEvent {
    /// The unique identifier of the code interpreter tool call item.
    pub item_id: String,
    /// The index of the output item in the response for which the code
    /// interpreter call is in progress.
    pub output_index: i64,
    /// The sequence number of this event, used to order streaming events.
    pub sequence_number: i64,
}

/// Emitted when the code interpreter is actively interpreting the code snippet.
#[derive(Serialize, Deserialize)]
pub struct ResponseCodeInterpreterCallInterpretingEvent {
    /// The unique identifier of the code interpreter tool call item.
    pub item_id: String,
    /// The index of the output item in the response for which the code
    /// interpreter is interpreting code.
    pub output_index: i64,
    /// The sequence number of this event, used to order streaming events.
    pub sequence_number: i64,
}

/// Emitted when the model response is complete.
#[derive(Serialize, Deserialize)]
pub struct ResponseCompletedEvent {
    /// Properties of the completed response.
    pub response: Response,
    /// The sequence number for this event.
    pub sequence_number: i64,
}

/// Emitted when a new content part is added.
#[derive(Serialize, Deserialize)]
pub struct ResponseContentPartAddedEvent {
    /// The index of the content part that was added.
    pub content_index: i64,
    /// The ID of the output item that the content part was added to.
    pub item_id: String,
    /// The index of the output item that the content part was added to.
    pub output_index: i64,
    /// The content part that was added.
    pub part: OutputContent,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a content part is done.
#[derive(Serialize, Deserialize)]
pub struct ResponseContentPartDoneEvent {
    /// The index of the content part that is done.
    pub content_index: i64,
    /// The ID of the output item that the content part was added to.
    pub item_id: String,
    /// The index of the output item that the content part was added to.
    pub output_index: i64,
    /// The content part that is done.
    pub part: OutputContent,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// An event that is emitted when a response is created.
#[derive(Serialize, Deserialize)]
pub struct ResponseCreatedEvent {
    /// The response that was created.
    pub response: Response,
    /// The sequence number for this event.
    pub sequence_number: i64,
}

/// Emitted when an error occurs.
#[derive(Serialize, Deserialize)]
pub struct ResponseErrorEvent {
    /// The error code.
    pub code: Option<String>,
    /// The error message.
    pub message: String,
    /// The error parameter.
    pub param: Option<String>,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a file search call is completed (results found).
#[derive(Serialize, Deserialize)]
pub struct ResponseFileSearchCallCompletedEvent {
    /// The ID of the output item that the file search call is initiated.
    pub item_id: String,
    /// The index of the output item that the file search call is initiated.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a file search call is initiated.
#[derive(Serialize, Deserialize)]
pub struct ResponseFileSearchCallInProgressEvent {
    /// The ID of the output item that the file search call is initiated.
    pub item_id: String,
    /// The index of the output item that the file search call is initiated.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a file search is currently searching.
#[derive(Serialize, Deserialize)]
pub struct ResponseFileSearchCallSearchingEvent {
    /// The ID of the output item that the file search call is initiated.
    pub item_id: String,
    /// The index of the output item that the file search call is searching.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when there is a partial function-call arguments delta.
#[derive(Serialize, Deserialize)]
pub struct ResponseFunctionCallArgumentsDeltaEvent {
    /// The function-call arguments delta that is added.
    pub delta: String,
    /// The ID of the output item that the function-call arguments delta is
    /// added to.
    pub item_id: String,
    /// The index of the output item that the function-call arguments delta is
    /// added to.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when function-call arguments are finalized.
#[derive(Serialize, Deserialize)]
pub struct ResponseFunctionCallArgumentsDoneEvent {
    /// The function-call arguments.
    pub arguments: String,
    /// The ID of the item.
    pub item_id: String,
    /// The name of the function that was called.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The index of the output item.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when the response is in progress.
#[derive(Serialize, Deserialize)]
pub struct ResponseInProgressEvent {
    /// The response that is in progress.
    pub response: Response,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// An event that is emitted when a response fails.
#[derive(Serialize, Deserialize)]
pub struct ResponseFailedEvent {
    /// The response that failed.
    pub response: Response,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// An event that is emitted when a response finishes as incomplete.
#[derive(Serialize, Deserialize)]
pub struct ResponseIncompleteEvent {
    /// The response that was incomplete.
    pub response: Response,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a new output item is added.
#[derive(Serialize, Deserialize)]
pub struct ResponseOutputItemAddedEvent {
    /// The output item that was added.
    pub item: OutputItem,
    /// The index of the output item that was added.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when an output item is marked done.
#[derive(Serialize, Deserialize)]
pub struct ResponseOutputItemDoneEvent {
    /// The output item that was marked done.
    pub item: OutputItem,
    /// The index of the output item that was marked done.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a new reasoning summary part is added.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningSummaryPartAddedEvent {
    /// The ID of the item this summary part is associated with.
    pub item_id: String,
    /// The index of the output item this summary part is associated with.
    pub output_index: i64,
    /// The summary part that was added.
    pub part: ResponseReasoningSummaryPartAddedEventPart,
    /// The sequence number of this event.
    pub sequence_number: i64,
    /// The index of the summary part within the reasoning summary.
    pub summary_index: i64,
}

/// The summary part that was added.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningSummaryPartAddedEventPart {
    /// The text of the summary part.
    pub text: String,
    /// The type of the summary part. Always `summary_text`.
    pub r#type: ResponseReasoningSummaryPartAddedEventPartType,
}

/// The type of the summary part. Always `summary_text`.
#[derive(Serialize, Deserialize)]
pub enum ResponseReasoningSummaryPartAddedEventPartType {
    #[serde(rename = "summary_text")]
    SummaryText,
}

/// Emitted when a reasoning summary part is completed.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningSummaryPartDoneEvent {
    /// The ID of the item this summary part is associated with.
    pub item_id: String,
    /// The index of the output item this summary part is associated with.
    pub output_index: i64,
    /// The completed summary part.
    pub part: ResponseReasoningSummaryPartDoneEventPart,
    /// The sequence number of this event.
    pub sequence_number: i64,
    /// The index of the summary part within the reasoning summary.
    pub summary_index: i64,
}

/// The completed summary part.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningSummaryPartDoneEventPart {
    /// The text of the summary part.
    pub text: String,
    /// The type of the summary part. Always `summary_text`.
    pub r#type: ResponseReasoningSummaryPartDoneEventPartType,
}

/// The type of the summary part. Always `summary_text`.
#[derive(Serialize, Deserialize)]
pub enum ResponseReasoningSummaryPartDoneEventPartType {
    #[serde(rename = "summary_text")]
    SummaryText,
}

/// Emitted when a delta is added to a reasoning summary text.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningSummaryTextDeltaEvent {
    /// The text delta that was added to the summary.
    pub delta: String,
    /// The ID of the item this summary text delta is associated with.
    pub item_id: String,
    /// The index of the output item this summary text delta is associated with.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
    /// The index of the summary part within the reasoning summary.
    pub summary_index: i64,
}

/// Emitted when a reasoning summary text is completed.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningSummaryTextDoneEvent {
    /// The ID of the item this summary text is associated with.
    pub item_id: String,
    /// The index of the output item this summary text is associated with.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
    /// The index of the summary part within the reasoning summary.
    pub summary_index: i64,
    /// The full text of the completed reasoning summary.
    pub text: String,
}

/// Emitted when a delta is added to a reasoning text.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningTextDeltaEvent {
    /// The index of the reasoning content part this delta is associated with.
    pub content_index: i64,
    /// The text delta that was added to the reasoning content.
    pub delta: String,
    /// The ID of the item this reasoning text delta is associated with.
    pub item_id: String,
    /// The index of the output item this reasoning text delta is associated
    /// with.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a reasoning text is completed.
#[derive(Serialize, Deserialize)]
pub struct ResponseReasoningTextDoneEvent {
    /// The index of the reasoning content part.
    pub content_index: i64,
    /// The ID of the item this reasoning text is associated with.
    pub item_id: String,
    /// The index of the output item this reasoning text is associated with.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
    /// The full text of the completed reasoning content.
    pub text: String,
}

/// Emitted when there is a partial refusal text.
#[derive(Serialize, Deserialize)]
pub struct ResponseRefusalDeltaEvent {
    /// The index of the content part that the refusal text is added to.
    pub content_index: i64,
    /// The refusal text that is added.
    pub delta: String,
    /// The ID of the output item that the refusal text is added to.
    pub item_id: String,
    /// The index of the output item that the refusal text is added to.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when refusal text is finalized.
#[derive(Serialize, Deserialize)]
pub struct ResponseRefusalDoneEvent {
    /// The index of the content part that the refusal text is finalized.
    pub content_index: i64,
    /// The ID of the output item that the refusal text is finalized.
    pub item_id: String,
    /// The index of the output item that the refusal text is finalized.
    pub output_index: i64,
    /// The refusal text that is finalized.
    pub refusal: String,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when there is an additional text delta.
#[derive(Serialize, Deserialize)]
pub struct ResponseTextDeltaEvent {
    /// The index of the content part that the text delta was added to.
    pub content_index: i64,
    /// The text delta that was added.
    pub delta: String,
    /// The ID of the output item that the text delta was added to.
    pub item_id: String,
    /// The log probabilities of the tokens in the delta.
    pub logprobs: Vec<ResponseLogProb>,
    /// The index of the output item that the text delta was added to.
    pub output_index: i64,
    /// The sequence number for this event.
    pub sequence_number: i64,
}

/// Emitted when text content is finalized.
#[derive(Serialize, Deserialize)]
pub struct ResponseTextDoneEvent {
    /// The index of the content part that the text content is finalized.
    pub content_index: i64,
    /// The ID of the output item that the text content is finalized.
    pub item_id: String,
    /// The log probabilities of the tokens in the delta.
    pub logprobs: Vec<ResponseLogProb>,
    /// The index of the output item that the text content is finalized.
    pub output_index: i64,
    /// The sequence number for this event.
    pub sequence_number: i64,
    /// The text content that is finalized.
    pub text: String,
}

/// Emitted when a web search call is completed.
#[derive(Serialize, Deserialize)]
pub struct ResponseWebSearchCallCompletedEvent {
    /// Unique ID for the output item associated with the web search call.
    pub item_id: String,
    /// The index of the output item that the web search call is associated
    /// with.
    pub output_index: i64,
    /// The sequence number of the web search call being processed.
    pub sequence_number: i64,
}

/// Emitted when a web search call is initiated.
#[derive(Serialize, Deserialize)]
pub struct ResponseWebSearchCallInProgressEvent {
    /// Unique ID for the output item associated with the web search call.
    pub item_id: String,
    /// The index of the output item that the web search call is associated
    /// with.
    pub output_index: i64,
    /// The sequence number of the web search call being processed.
    pub sequence_number: i64,
}

/// Emitted when a web search call is executing.
#[derive(Serialize, Deserialize)]
pub struct ResponseWebSearchCallSearchingEvent {
    /// Unique ID for the output item associated with the web search call.
    pub item_id: String,
    /// The index of the output item that the web search call is associated
    /// with.
    pub output_index: i64,
    /// The sequence number of the web search call being processed.
    pub sequence_number: i64,
}

/// Emitted when an image generation tool call has completed and the final image
/// is available.
#[derive(Serialize, Deserialize)]
pub struct ResponseImageGenCallCompletedEvent {
    /// The unique identifier of the image generation item being processed.
    pub item_id: String,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when an image generation tool call is actively generating an image
/// (intermediate state).
#[derive(Serialize, Deserialize)]
pub struct ResponseImageGenCallGeneratingEvent {
    /// The unique identifier of the image generation item being processed.
    pub item_id: String,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// The sequence number of the image generation item being processed.
    pub sequence_number: i64,
}

/// Emitted when an image generation tool call is in progress.
#[derive(Serialize, Deserialize)]
pub struct ResponseImageGenCallInProgressEvent {
    /// The unique identifier of the image generation item being processed.
    pub item_id: String,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// The sequence number of the image generation item being processed.
    pub sequence_number: i64,
}

/// Emitted when a partial image is available during image generation streaming.
#[derive(Serialize, Deserialize)]
pub struct ResponseImageGenCallPartialImageEvent {
    /// The background setting used for the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub background: Option<ResponseImageGenCallPartialImageEventBackground>,
    /// The unique identifier of the image generation item being processed.
    pub item_id: String,
    /// The output format of the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_format: Option<String>,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// Base64-encoded partial image data, suitable for rendering as an image.
    #[serde(rename = "partial_image_b64")]
    pub partial_image_b_64: String,
    /// 0-based index for the partial image (backend is 1-based, but this is
    /// 0-based for the user).
    pub partial_image_index: i64,
    /// The quality of the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub quality: Option<ResponseImageGenCallPartialImageEventQuality>,
    /// The sequence number of the image generation item being processed.
    pub sequence_number: i64,
    /// The size of the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub size: Option<String>,
}

/// The background setting used for the generated image.
#[derive(Serialize, Deserialize)]
pub enum ResponseImageGenCallPartialImageEventBackground {
    #[serde(rename = "transparent")]
    Transparent,
    #[serde(rename = "opaque")]
    Opaque,
    #[serde(rename = "auto")]
    Auto,
}

/// The quality of the generated image.
#[derive(Serialize, Deserialize)]
pub enum ResponseImageGenCallPartialImageEventQuality {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "medium")]
    Medium,
    #[serde(rename = "high")]
    High,
    #[serde(rename = "auto")]
    Auto,
}

/// Emitted when there is a delta (partial update) to the arguments of an MCP
/// tool call.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPCallArgumentsDeltaEvent {
    /// A JSON string containing the partial update to the arguments for the MCP
    /// tool call.
    pub delta: String,
    /// The unique identifier of the MCP tool call item being processed.
    pub item_id: String,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when the arguments for an MCP tool call are finalized.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPCallArgumentsDoneEvent {
    /// A JSON string containing the finalized arguments for the MCP tool call.
    pub arguments: String,
    /// The unique identifier of the MCP tool call item being processed.
    pub item_id: String,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when an MCP  tool call has completed successfully.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPCallCompletedEvent {
    /// The ID of the MCP tool call item that completed.
    pub item_id: String,
    /// The index of the output item that completed.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when an MCP  tool call has failed.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPCallFailedEvent {
    /// The ID of the MCP tool call item that failed.
    pub item_id: String,
    /// The index of the output item that failed.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when an MCP  tool call is in progress.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPCallInProgressEvent {
    /// The unique identifier of the MCP tool call item being processed.
    pub item_id: String,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when the list of available MCP tools has been successfully
/// retrieved.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPListToolsCompletedEvent {
    /// The ID of the MCP tool call item that produced this output.
    pub item_id: String,
    /// The index of the output item that was processed.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when the attempt to list available MCP tools has failed.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPListToolsFailedEvent {
    /// The ID of the MCP tool call item that failed.
    pub item_id: String,
    /// The index of the output item that failed.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when the system is in the process of retrieving the list of
/// available MCP tools.
#[derive(Serialize, Deserialize)]
pub struct ResponseMCPListToolsInProgressEvent {
    /// The ID of the MCP tool call item that is being processed.
    pub item_id: String,
    /// The index of the output item that is being processed.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when an annotation is added to output text content.
#[derive(Serialize, Deserialize)]
pub struct ResponseOutputTextAnnotationAddedEvent {
    /// The annotation object being added. (See annotation schema for details.)
    pub annotation: Value,
    /// The index of the annotation within the content part.
    pub annotation_index: i64,
    /// The index of the content part within the output item.
    pub content_index: i64,
    /// The unique identifier of the item to which the annotation is being
    /// added.
    pub item_id: String,
    /// The index of the output item in the response's output array.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Emitted when a response is queued and waiting to be processed.
#[derive(Serialize, Deserialize)]
pub struct ResponseQueuedEvent {
    /// The full response object that is queued.
    pub response: Response,
    /// The sequence number for this event.
    pub sequence_number: i64,
}

/// Event representing a delta (partial update) to the input of a custom tool
/// call.
#[derive(Serialize, Deserialize)]
pub struct ResponseCustomToolCallInputDeltaEvent {
    /// The incremental input data (delta) for the custom tool call.
    pub delta: String,
    /// Unique identifier for the API item associated with this event.
    pub item_id: String,
    /// The index of the output this delta applies to.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

/// Event indicating that input for a custom tool call is complete.
#[derive(Serialize, Deserialize)]
pub struct ResponseCustomToolCallInputDoneEvent {
    /// The complete input data for the custom tool call.
    pub input: String,
    /// Unique identifier for the API item associated with this event.
    pub item_id: String,
    /// The index of the output this event applies to.
    pub output_index: i64,
    /// The sequence number of this event.
    pub sequence_number: i64,
}

pub type ModelIdsResponses = Option<String>;

/// Reference to a prompt template and its variables.
/// [Learn more](/docs/guides/text?api-mode=responses#reusable-prompts).
#[derive(Serialize, Deserialize)]
pub struct PromptValue {
    /// The unique identifier of the prompt template to use.
    pub id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub variables: Option<ResponsePromptVariables>,
    /// Optional version of the prompt template.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

pub type Prompt = Option<Option<PromptValue>>;

/// **gpt-5 and o-series models only**
///
/// Configuration options for
/// [reasoning models](https://platform.openai.com/docs/guides/reasoning).
#[derive(Serialize, Deserialize)]
pub struct Reasoning {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub effort: Option<ReasoningEffort>,
    /// **Deprecated:** use `summary` instead.
    ///
    /// A summary of the reasoning performed by the model. This can be
    /// useful for debugging and understanding the model's reasoning process.
    /// One of `auto`, `concise`, or `detailed`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub generate_summary: Option<ReasoningGenerateSummary>,
    /// A summary of the reasoning performed by the model. This can be
    /// useful for debugging and understanding the model's reasoning process.
    /// One of `auto`, `concise`, or `detailed`.
    ///
    /// `concise` is supported for `computer-use-preview` models and all
    /// reasoning models after `gpt-5`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub summary: Option<ReasoningSummary>,
}

/// **Deprecated:** use `summary` instead.
///
/// A summary of the reasoning performed by the model. This can be
/// useful for debugging and understanding the model's reasoning process.
/// One of `auto`, `concise`, or `detailed`.
#[derive(Serialize, Deserialize)]
pub enum ReasoningGenerateSummary {
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "concise")]
    Concise,
    #[serde(rename = "detailed")]
    Detailed,
}

/// A summary of the reasoning performed by the model. This can be
/// useful for debugging and understanding the model's reasoning process.
/// One of `auto`, `concise`, or `detailed`.
///
/// `concise` is supported for `computer-use-preview` models and all reasoning
/// models after `gpt-5`.
#[derive(Serialize, Deserialize)]
pub enum ReasoningSummary {
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "concise")]
    Concise,
    #[serde(rename = "detailed")]
    Detailed,
}

/// Configuration options for a text response from the model. Can be plain
/// text or structured JSON data. Learn more:
/// - [Text inputs and outputs](/docs/guides/text)
/// - [Structured Outputs](/docs/guides/structured-outputs)
#[derive(Serialize, Deserialize)]
pub struct ResponseTextParam {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub format: Option<TextResponseFormatConfiguration>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub verbosity: Option<Verbosity>,
}

/// How the model should select which tool (or tools) to use when generating
/// a response. See the `tools` parameter to see how to specify which tools
/// the model can call.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum ToolChoiceParam {
    ToolChoiceOptions(ToolChoiceOptions),
    ToolChoiceAllowed(ToolChoiceAllowed),
    ToolChoiceTypes(ToolChoiceTypes),
    ToolChoiceFunction(ToolChoiceFunction),
    ToolChoiceMCP(ToolChoiceMCP),
    ToolChoiceCustom(ToolChoiceCustom),
    SpecificApplyPatchParam(SpecificApplyPatchParam),
    SpecificFunctionShellParam(SpecificFunctionShellParam),
}

/// An array of tools the model may call while generating a response. You
/// can specify which tool to use by setting the `tool_choice` parameter.
///
/// We support the following categories of tools:
/// - **Built-in tools**: Tools that are provided by OpenAI that extend the
///   model's capabilities, like [web search](/docs/guides/tools-web-search) or
///   [file search](/docs/guides/tools-file-search). Learn more about [built-in
///   tools](/docs/guides/tools).
/// - **MCP Tools**: Integrations with third-party systems via custom MCP
///   servers or predefined connectors such as Google Drive and SharePoint.
///   Learn more about [MCP Tools](/docs/guides/tools-connectors-mcp).
/// - **Function calls (custom tools)**: Functions that are defined by you,
///   enabling the model to call your own code with strongly typed arguments and
///   outputs. Learn more about [function
///   calling](/docs/guides/function-calling). You can also use custom tools to
///   call your own code.
pub type ToolsArray = Option<Vec<Tool>>;

/// The conversation that this response belongs to.
#[derive(Serialize, Deserialize)]
pub struct ConversationParam2 {
    /// The unique ID of the conversation.
    pub id: String,
}

pub type Metadata = Option<Option<HashMap<String, String>>>;

/// Specifies the processing type used for serving the request.
///   - If set to 'auto', then the request will be processed with the service
///     tier configured in the Project settings. Unless otherwise configured,
///     the Project will use 'default'.
///   - If set to 'default', then the request will be processed with the
///     standard pricing and performance for the selected model.
///   - If set to '[flex](/docs/guides/flex-processing)' or '[priority](https://openai.com/api-priority-processing/)',
///     then the request will be processed with the corresponding service tier.
///   - When not set, the default behavior is 'auto'.
///
///   When the `service_tier` parameter is set, the response body will include
/// the `service_tier` value based on the processing mode actually used to serve
/// the request. This response value may be different from the value set in the
/// parameter.
#[derive(Serialize, Deserialize)]
pub enum ServiceTierValue {
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "default")]
    Default,
    #[serde(rename = "flex")]
    Flex,
    #[serde(rename = "scale")]
    Scale,
    #[serde(rename = "priority")]
    Priority,
}

pub type ServiceTier = Option<Option<ServiceTierValue>>;

/// The error code for the response.
#[derive(Serialize, Deserialize)]
pub enum ResponseErrorCode {
    #[serde(rename = "server_error")]
    ServerError,
    #[serde(rename = "rate_limit_exceeded")]
    RateLimitExceeded,
    #[serde(rename = "invalid_prompt")]
    InvalidPrompt,
    #[serde(rename = "vector_store_timeout")]
    VectorStoreTimeout,
    #[serde(rename = "invalid_image")]
    InvalidImage,
    #[serde(rename = "invalid_image_format")]
    InvalidImageFormat,
    #[serde(rename = "invalid_base64_image")]
    InvalidBase64Image,
    #[serde(rename = "invalid_image_url")]
    InvalidImageUrl,
    #[serde(rename = "image_too_large")]
    ImageTooLarge,
    #[serde(rename = "image_too_small")]
    ImageTooSmall,
    #[serde(rename = "image_parse_error")]
    ImageParseError,
    #[serde(rename = "image_content_policy_violation")]
    ImageContentPolicyViolation,
    #[serde(rename = "invalid_image_mode")]
    InvalidImageMode,
    #[serde(rename = "image_file_too_large")]
    ImageFileTooLarge,
    #[serde(rename = "unsupported_image_media_type")]
    UnsupportedImageMediaType,
    #[serde(rename = "empty_image_file")]
    EmptyImageFile,
    #[serde(rename = "failed_to_download_image")]
    FailedToDownloadImage,
    #[serde(rename = "image_file_not_found")]
    ImageFileNotFound,
}

/// A message input to the model with a role indicating instruction following
/// hierarchy. Instructions given with the `developer` or `system` role take
/// precedence over instructions given with the `user` role. Messages with the
/// `assistant` role are presumed to have been generated by the model in
/// previous interactions.
#[derive(Serialize, Deserialize)]
pub struct EasyInputMessage {
    /// Text, image, or audio input to the model, used to generate a response.
    /// Can also contain previous assistant responses.
    pub content: EasyInputMessageContent,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub phase: Option<MessagePhase>,
    /// The role of the message input. One of `user`, `assistant`, `system`, or
    /// `developer`.
    pub role: EasyInputMessageRole,
    /// The type of the message input. Always `message`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub r#type: Option<EasyInputMessageType>,
}

/// A text input to the model.
pub type EasyInputMessageContentString = Option<String>;

/// Text, image, or audio input to the model, used to generate a response.
/// Can also contain previous assistant responses.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum EasyInputMessageContent {
    EasyInputMessageContentString(EasyInputMessageContentString),
    InputMessageContentList(InputMessageContentList),
}

/// The role of the message input. One of `user`, `assistant`, `system`, or
/// `developer`.
#[derive(Serialize, Deserialize)]
pub enum EasyInputMessageRole {
    #[serde(rename = "user")]
    User,
    #[serde(rename = "assistant")]
    Assistant,
    #[serde(rename = "system")]
    System,
    #[serde(rename = "developer")]
    Developer,
}

/// The type of the message input. Always `message`.
#[derive(Serialize, Deserialize)]
pub enum EasyInputMessageType {
    #[serde(rename = "message")]
    Message,
}

/// Content item used to generate a response.
#[derive(Serialize)]
#[serde(untagged)]
pub enum Item {
    InputMessage(InputMessage),
    OutputMessage(OutputMessage),
    FileSearchToolCall(FileSearchToolCall),
    ComputerToolCall(ComputerToolCall),
    ComputerCallOutputItemParam(ComputerCallOutputItemParam),
    WebSearchToolCall(WebSearchToolCall),
    FunctionToolCall(FunctionToolCall),
    FunctionCallOutputItemParam(FunctionCallOutputItemParam),
    ToolSearchCallItemParam(ToolSearchCallItemParam),
    ToolSearchOutputItemParam(ToolSearchOutputItemParam),
    ReasoningItem(ReasoningItem),
    CompactionSummaryItemParam(CompactionSummaryItemParam),
    ImageGenToolCall(ImageGenToolCall),
    CodeInterpreterToolCall(CodeInterpreterToolCall),
    LocalShellToolCall(LocalShellToolCall),
    LocalShellToolCallOutput(LocalShellToolCallOutput),
    FunctionShellCallItemParam(FunctionShellCallItemParam),
    FunctionShellCallOutputItemParam(FunctionShellCallOutputItemParam),
    ApplyPatchToolCallItemParam(ApplyPatchToolCallItemParam),
    ApplyPatchToolCallOutputItemParam(ApplyPatchToolCallOutputItemParam),
    MCPListTools(MCPListTools),
    MCPApprovalRequest(MCPApprovalRequest),
    MCPApprovalResponse(MCPApprovalResponse),
    MCPToolCall(MCPToolCall),
    CustomToolCallOutput(CustomToolCallOutput),
    CustomToolCall(CustomToolCall),
}

impl<'de> Deserialize<'de> for Item {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let value = Value::deserialize(deserializer)?;
        let type_str = value
            .get("type")
            .and_then(Value::as_str)
            .ok_or_else(|| serde::de::Error::missing_field("type"))?;

        match type_str {
            "message" => {
                let role = value
                    .get("role")
                    .and_then(Value::as_str)
                    .ok_or_else(|| serde::de::Error::missing_field("role"))?;

                if role == "assistant" && value.get("id").is_some() {
                    serde_json::from_value(value)
                        .map(Self::OutputMessage)
                        .map_err(serde::de::Error::custom)
                } else {
                    serde_json::from_value(value)
                        .map(Self::InputMessage)
                        .map_err(serde::de::Error::custom)
                }
            }
            "file_search_call" => serde_json::from_value(value)
                .map(Self::FileSearchToolCall)
                .map_err(serde::de::Error::custom),
            "computer_call" => serde_json::from_value(value)
                .map(Self::ComputerToolCall)
                .map_err(serde::de::Error::custom),
            "computer_call_output" => serde_json::from_value(value)
                .map(Self::ComputerCallOutputItemParam)
                .map_err(serde::de::Error::custom),
            "web_search_call" => serde_json::from_value(value)
                .map(Self::WebSearchToolCall)
                .map_err(serde::de::Error::custom),
            "function_call" => serde_json::from_value(value)
                .map(Self::FunctionToolCall)
                .map_err(serde::de::Error::custom),
            "function_call_output" => serde_json::from_value(value)
                .map(Self::FunctionCallOutputItemParam)
                .map_err(serde::de::Error::custom),
            "tool_search_call" => serde_json::from_value(value)
                .map(Self::ToolSearchCallItemParam)
                .map_err(serde::de::Error::custom),
            "tool_search_output" => serde_json::from_value(value)
                .map(Self::ToolSearchOutputItemParam)
                .map_err(serde::de::Error::custom),
            "reasoning" => serde_json::from_value(value)
                .map(Self::ReasoningItem)
                .map_err(serde::de::Error::custom),
            "compaction" => serde_json::from_value(value)
                .map(Self::CompactionSummaryItemParam)
                .map_err(serde::de::Error::custom),
            "image_generation_call" => serde_json::from_value(value)
                .map(Self::ImageGenToolCall)
                .map_err(serde::de::Error::custom),
            "code_interpreter_call" => serde_json::from_value(value)
                .map(Self::CodeInterpreterToolCall)
                .map_err(serde::de::Error::custom),
            "local_shell_call" => serde_json::from_value(value)
                .map(Self::LocalShellToolCall)
                .map_err(serde::de::Error::custom),
            "local_shell_call_output" => serde_json::from_value(value)
                .map(Self::LocalShellToolCallOutput)
                .map_err(serde::de::Error::custom),
            "shell_call" => serde_json::from_value(value)
                .map(Self::FunctionShellCallItemParam)
                .map_err(serde::de::Error::custom),
            "shell_call_output" => serde_json::from_value(value)
                .map(Self::FunctionShellCallOutputItemParam)
                .map_err(serde::de::Error::custom),
            "apply_patch_call" => serde_json::from_value(value)
                .map(Self::ApplyPatchToolCallItemParam)
                .map_err(serde::de::Error::custom),
            "apply_patch_call_output" => serde_json::from_value(value)
                .map(Self::ApplyPatchToolCallOutputItemParam)
                .map_err(serde::de::Error::custom),
            "mcp_list_tools" => serde_json::from_value(value)
                .map(Self::MCPListTools)
                .map_err(serde::de::Error::custom),
            "mcp_approval_request" => serde_json::from_value(value)
                .map(Self::MCPApprovalRequest)
                .map_err(serde::de::Error::custom),
            "mcp_approval_response" => serde_json::from_value(value)
                .map(Self::MCPApprovalResponse)
                .map_err(serde::de::Error::custom),
            "mcp_call" => serde_json::from_value(value)
                .map(Self::MCPToolCall)
                .map_err(serde::de::Error::custom),
            "custom_tool_call_output" => serde_json::from_value(value)
                .map(Self::CustomToolCallOutput)
                .map_err(serde::de::Error::custom),
            "custom_tool_call" => serde_json::from_value(value)
                .map(Self::CustomToolCall)
                .map_err(serde::de::Error::custom),
            _ => Err(serde::de::Error::unknown_variant(
                type_str,
                &[
                    "message",
                    "file_search_call",
                    "computer_call",
                    "computer_call_output",
                    "web_search_call",
                    "function_call",
                    "function_call_output",
                    "tool_search_call",
                    "tool_search_output",
                    "reasoning",
                    "compaction",
                    "image_generation_call",
                    "code_interpreter_call",
                    "local_shell_call",
                    "local_shell_call_output",
                    "shell_call",
                    "shell_call_output",
                    "apply_patch_call",
                    "apply_patch_call_output",
                    "mcp_list_tools",
                    "mcp_approval_request",
                    "mcp_approval_response",
                    "mcp_call",
                    "custom_tool_call_output",
                    "custom_tool_call",
                ],
            )),
        }
    }
}

/// An internal identifier for an item to reference.
#[derive(Serialize, Deserialize)]
pub struct ItemReferenceParam {
    /// The ID of the item to reference.
    pub id: String,
    /// The type of item to reference. Always `item_reference`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub r#type: Option<ItemReferenceParamType>,
}

/// The type of item to reference. Always `item_reference`.
#[derive(Serialize, Deserialize)]
pub enum ItemReferenceParamType {
    #[serde(rename = "item_reference")]
    ItemReference,
}

/// An output message from the model.
#[derive(Serialize, Deserialize)]
pub struct OutputMessage {
    /// The content of the output message.
    pub content: Vec<OutputMessageContent>,
    /// The unique ID of the output message.
    pub id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub phase: Option<MessagePhase>,
    /// The role of the output message. Always `assistant`.
    pub role: OutputMessageRole,
    /// The status of the message input. One of `in_progress`, `completed`, or
    /// `incomplete`. Populated when input items are returned via API.
    pub status: OutputMessageStatus,
    /// The type of the output message. Always `message`.
    pub r#type: OutputMessageType,
}

/// The role of the output message. Always `assistant`.
#[derive(Serialize, Deserialize)]
pub enum OutputMessageRole {
    #[serde(rename = "assistant")]
    Assistant,
}

/// The status of the message input. One of `in_progress`, `completed`, or
/// `incomplete`. Populated when input items are returned via API.
#[derive(Serialize, Deserialize)]
pub enum OutputMessageStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The type of the output message. Always `message`.
#[derive(Serialize, Deserialize)]
pub enum OutputMessageType {
    #[serde(rename = "message")]
    Message,
}

/// The results of a file search tool call. See the
/// [file search guide](/docs/guides/tools-file-search) for more information.
#[derive(Serialize, Deserialize)]
pub struct FileSearchToolCall {
    /// The unique ID of the file search tool call.
    pub id: String,
    /// The queries used to search for files.
    pub queries: Vec<String>,
    /// The results of the file search tool call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub results: Option<Vec<FileSearchToolCallResultsItem>>,
    /// The status of the file search tool call. One of `in_progress`,
    /// `searching`, `incomplete` or `failed`,
    pub status: FileSearchToolCallStatus,
    /// The type of the file search tool call. Always `file_search_call`.
    pub r#type: FileSearchToolCallType,
}

#[derive(Serialize, Deserialize)]
pub struct FileSearchToolCallResultsItem {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub attributes: Option<VectorStoreFileAttributes>,
    /// The unique ID of the file.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_id: Option<String>,
    /// The name of the file.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filename: Option<String>,
    /// The relevance score of the file - a value between 0 and 1.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub score: Option<f64>,
    /// The text that was retrieved from the file.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
}

/// The status of the file search tool call. One of `in_progress`,
/// `searching`, `incomplete` or `failed`,
#[derive(Serialize, Deserialize)]
pub enum FileSearchToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "searching")]
    Searching,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
    #[serde(rename = "failed")]
    Failed,
}

/// The type of the file search tool call. Always `file_search_call`.
#[derive(Serialize, Deserialize)]
pub enum FileSearchToolCallType {
    #[serde(rename = "file_search_call")]
    FileSearchCall,
}

/// A tool call to run a function. See the
/// [function calling guide](/docs/guides/function-calling) for more
/// information.
#[derive(Serialize, Deserialize)]
pub struct FunctionToolCall {
    /// A JSON string of the arguments to pass to the function.
    pub arguments: String,
    /// The unique ID of the function tool call generated by the model.
    pub call_id: String,
    /// The unique ID of the function tool call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The name of the function to run.
    pub name: String,
    /// The namespace of the function to run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub namespace: Option<String>,
    /// The status of the item. One of `in_progress`, `completed`, or
    /// `incomplete`. Populated when items are returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<FunctionToolCallStatus>,
    /// The type of the function tool call. Always `function_call`.
    pub r#type: FunctionToolCallType,
}

/// The status of the item. One of `in_progress`, `completed`, or
/// `incomplete`. Populated when items are returned via API.
#[derive(Serialize, Deserialize)]
pub enum FunctionToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The type of the function tool call. Always `function_call`.
#[derive(Serialize, Deserialize)]
pub enum FunctionToolCallType {
    #[serde(rename = "function_call")]
    FunctionCall,
}

/// The results of a web search tool call. See the
/// [web search guide](/docs/guides/tools-web-search) for more information.
#[derive(Serialize, Deserialize)]
pub struct WebSearchToolCall {
    /// An object describing the specific action taken in this web search call.
    /// Includes details on how the model used the web (search, open_page,
    /// find_in_page).
    pub action: WebSearchToolCallAction,
    /// The unique ID of the web search tool call.
    pub id: String,
    /// The status of the web search tool call.
    pub status: WebSearchToolCallStatus,
    /// The type of the web search tool call. Always `web_search_call`.
    pub r#type: WebSearchToolCallType,
}

/// An object describing the specific action taken in this web search call.
/// Includes details on how the model used the web (search, open_page,
/// find_in_page).
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum WebSearchToolCallAction {
    #[serde(rename = "search")]
    Search(WebSearchActionSearch),
    #[serde(rename = "open_page")]
    OpenPage(WebSearchActionOpenPage),
    #[serde(rename = "find_in_page")]
    FindInPage(WebSearchActionFind),
}

/// The status of the web search tool call.
#[derive(Serialize, Deserialize)]
pub enum WebSearchToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "searching")]
    Searching,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "failed")]
    Failed,
}

/// The type of the web search tool call. Always `web_search_call`.
#[derive(Serialize, Deserialize)]
pub enum WebSearchToolCallType {
    #[serde(rename = "web_search_call")]
    WebSearchCall,
}

/// A tool call to a computer use tool. See the
/// [computer use guide](/docs/guides/tools-computer-use) for more information.
#[derive(Serialize, Deserialize)]
pub struct ComputerToolCall {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub action: Option<ComputerAction>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub actions: Option<ComputerActionList>,
    /// An identifier used when responding to the tool call with output.
    pub call_id: String,
    /// The unique ID of the computer call.
    pub id: String,
    /// The pending safety checks for the computer call.
    pub pending_safety_checks: Vec<ComputerCallSafetyCheckParam>,
    /// The status of the item. One of `in_progress`, `completed`, or
    /// `incomplete`. Populated when items are returned via API.
    pub status: ComputerToolCallStatus,
    /// The type of the computer call. Always `computer_call`.
    pub r#type: ComputerToolCallType,
}

/// The status of the item. One of `in_progress`, `completed`, or
/// `incomplete`. Populated when items are returned via API.
#[derive(Serialize, Deserialize)]
pub enum ComputerToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The type of the computer call. Always `computer_call`.
#[derive(Serialize, Deserialize)]
pub enum ComputerToolCallType {
    #[serde(rename = "computer_call")]
    ComputerCall,
}

/// A description of the chain of thought used by a reasoning model while
/// generating a response. Be sure to include these items in your `input` to the
/// Responses API for subsequent turns of a conversation if you are manually
/// [managing context](/docs/guides/conversation-state).
#[derive(Serialize, Deserialize)]
pub struct ReasoningItem {
    /// Reasoning text content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub content: Option<Vec<ReasoningTextContent>>,
    /// The encrypted content of the reasoning item - populated when a response
    /// is generated with `reasoning.encrypted_content` in the `include`
    /// parameter.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub encrypted_content: Option<String>,
    /// The unique identifier of the reasoning content.
    pub id: String,
    /// The status of the item. One of `in_progress`, `completed`, or
    /// `incomplete`. Populated when items are returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<ReasoningItemStatus>,
    /// Reasoning summary content.
    pub summary: Vec<SummaryTextContent>,
    /// The type of the object. Always `reasoning`.
    pub r#type: ReasoningItemType,
}

/// The status of the item. One of `in_progress`, `completed`, or
/// `incomplete`. Populated when items are returned via API.
#[derive(Serialize, Deserialize)]
pub enum ReasoningItemStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The type of the object. Always `reasoning`.
#[derive(Serialize, Deserialize)]
pub enum ReasoningItemType {
    #[serde(rename = "reasoning")]
    Reasoning,
}

#[derive(Serialize, Deserialize)]
pub struct ToolSearchCall {
    /// Arguments used for the tool search call.
    pub arguments: Value,
    /// The unique ID of the tool search call generated by the model.
    pub call_id: Option<String>,
    /// The identifier of the actor that created the item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    /// Whether tool search was executed by the server or by the client.
    pub execution: ToolSearchExecutionType,
    /// The unique ID of the tool search call item.
    pub id: String,
    /// The status of the tool search call item that was recorded.
    pub status: FunctionCallStatus,
}

#[derive(Serialize, Deserialize)]
pub struct ToolSearchOutput {
    /// The unique ID of the tool search call generated by the model.
    pub call_id: Option<String>,
    /// The identifier of the actor that created the item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    /// Whether tool search was executed by the server or by the client.
    pub execution: ToolSearchExecutionType,
    /// The unique ID of the tool search output item.
    pub id: String,
    /// The status of the tool search output item that was recorded.
    pub status: FunctionCallOutputStatusEnum,
    /// The loaded tool definitions returned by tool search.
    pub tools: Vec<Tool>,
}

/// A compaction item generated by the [`v1/responses/compact`
/// API](/docs/api-reference/responses/compact).
#[derive(Serialize, Deserialize)]
pub struct CompactionBody {
    /// The identifier of the actor that created the item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    /// The encrypted content that was produced by compaction.
    pub encrypted_content: String,
    /// The unique ID of the compaction item.
    pub id: String,
}

/// An image generation request made by the model.
#[derive(Serialize, Deserialize)]
pub struct ImageGenToolCall {
    /// The image generation action performed by the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub action: Option<ImageGenToolCallAction>,
    /// The background setting used for the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub background: Option<ImageGenToolCallBackground>,
    /// The unique ID of the image generation call.
    pub id: String,
    /// The output format of the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_format: Option<String>,
    /// The quality of the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub quality: Option<ImageGenToolCallQuality>,
    /// The generated image encoded in base64.
    pub result: Option<String>,
    /// The revised prompt used to generate the image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub revised_prompt: Option<String>,
    /// The size of the generated image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub size: Option<String>,
    /// The status of the image generation call.
    pub status: ImageGenToolCallStatus,
    /// The type of the image generation call. Always `image_generation_call`.
    pub r#type: ImageGenToolCallType,
}

/// The image generation action performed by the model.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolCallAction {
    #[serde(rename = "generate")]
    Generate,
    #[serde(rename = "edit")]
    Edit,
}

/// The background setting used for the generated image.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolCallBackground {
    #[serde(rename = "transparent")]
    Transparent,
    #[serde(rename = "opaque")]
    Opaque,
    #[serde(rename = "auto")]
    Auto,
}

/// The quality of the generated image.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolCallQuality {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "medium")]
    Medium,
    #[serde(rename = "high")]
    High,
    #[serde(rename = "auto")]
    Auto,
}

/// The status of the image generation call.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "generating")]
    Generating,
    #[serde(rename = "failed")]
    Failed,
}

/// The type of the image generation call. Always `image_generation_call`.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolCallType {
    #[serde(rename = "image_generation_call")]
    ImageGenerationCall,
}

/// A tool call to run code.
#[derive(Serialize, Deserialize)]
pub struct CodeInterpreterToolCall {
    /// The code to run, or null if not available.
    pub code: Option<String>,
    /// The ID of the container used to run the code.
    pub container_id: String,
    /// The unique ID of the code interpreter tool call.
    pub id: String,
    /// The outputs generated by the code interpreter, such as logs or images.
    /// Can be null if no outputs are available.
    pub outputs: Option<Vec<CodeInterpreterToolCallOutputsItem>>,
    /// The status of the code interpreter tool call. Valid values are
    /// `in_progress`, `completed`, `incomplete`, `interpreting`, and `failed`.
    pub status: CodeInterpreterToolCallStatus,
    /// The type of the code interpreter tool call. Always
    /// `code_interpreter_call`.
    pub r#type: CodeInterpreterToolCallType,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum CodeInterpreterToolCallOutputsItem {
    #[serde(rename = "logs")]
    Logs(CodeInterpreterOutputLogs),
    #[serde(rename = "image")]
    Image(CodeInterpreterOutputImage),
}

/// The status of the code interpreter tool call. Valid values are
/// `in_progress`, `completed`, `incomplete`, `interpreting`, and `failed`.
#[derive(Serialize, Deserialize)]
pub enum CodeInterpreterToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
    #[serde(rename = "interpreting")]
    Interpreting,
    #[serde(rename = "failed")]
    Failed,
}

/// The type of the code interpreter tool call. Always `code_interpreter_call`.
#[derive(Serialize, Deserialize)]
pub enum CodeInterpreterToolCallType {
    #[serde(rename = "code_interpreter_call")]
    CodeInterpreterCall,
}

/// A tool call to run a command on the local shell.
#[derive(Serialize, Deserialize)]
pub struct LocalShellToolCall {
    pub action: LocalShellExecAction,
    /// The unique ID of the local shell tool call generated by the model.
    pub call_id: String,
    /// The unique ID of the local shell call.
    pub id: String,
    /// The status of the local shell call.
    pub status: LocalShellToolCallStatus,
    /// The type of the local shell call. Always `local_shell_call`.
    pub r#type: LocalShellToolCallType,
}

/// The status of the local shell call.
#[derive(Serialize, Deserialize)]
pub enum LocalShellToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The type of the local shell call. Always `local_shell_call`.
#[derive(Serialize, Deserialize)]
pub enum LocalShellToolCallType {
    #[serde(rename = "local_shell_call")]
    LocalShellCall,
}

/// A tool call that executes one or more shell commands in a managed
/// environment.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCall {
    /// The shell commands and limits that describe how to run the tool call.
    pub action: FunctionShellAction,
    /// The unique ID of the shell tool call generated by the model.
    pub call_id: String,
    /// The ID of the entity that created this tool call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    pub environment: Option<FunctionShellCallEnvironment>,
    /// The unique ID of the shell tool call. Populated when this item is
    /// returned via API.
    pub id: String,
    /// The status of the shell call. One of `in_progress`, `completed`, or
    /// `incomplete`.
    pub status: LocalShellCallStatus,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum FunctionShellCallEnvironment {
    #[serde(rename = "local")]
    Local(LocalEnvironmentResource),
    #[serde(rename = "container_reference")]
    ContainerReference(ContainerReferenceResource),
}

/// The output of a shell tool call that was emitted.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutput {
    /// The unique ID of the shell tool call generated by the model.
    pub call_id: String,
    /// The identifier of the actor that created the item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    /// The unique ID of the shell call output. Populated when this item is
    /// returned via API.
    pub id: String,
    /// The maximum length of the shell command output. This is generated by the
    /// model and should be passed back with the raw output.
    pub max_output_length: Option<i64>,
    /// An array of shell call output contents
    pub output: Vec<FunctionShellCallOutputContent>,
    /// The status of the shell call output. One of `in_progress`, `completed`,
    /// or `incomplete`.
    pub status: LocalShellCallOutputStatusEnum,
}

/// A tool call that applies file diffs by creating, deleting, or updating
/// files.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchToolCall {
    /// The unique ID of the apply patch tool call generated by the model.
    pub call_id: String,
    /// The ID of the entity that created this tool call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    /// The unique ID of the apply patch tool call. Populated when this item is
    /// returned via API.
    pub id: String,
    /// One of the create_file, delete_file, or update_file operations applied
    /// via apply_patch.
    pub operation: ApplyPatchToolCallOperation,
    /// The status of the apply patch tool call. One of `in_progress` or
    /// `completed`.
    pub status: ApplyPatchCallStatus,
}

/// One of the create_file, delete_file, or update_file operations applied via
/// apply_patch.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum ApplyPatchToolCallOperation {
    #[serde(rename = "create_file")]
    CreateFile(ApplyPatchCreateFileOperation),
    #[serde(rename = "delete_file")]
    DeleteFile(ApplyPatchDeleteFileOperation),
    #[serde(rename = "update_file")]
    UpdateFile(ApplyPatchUpdateFileOperation),
}

/// The output emitted by an apply patch tool call.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchToolCallOutput {
    /// The unique ID of the apply patch tool call generated by the model.
    pub call_id: String,
    /// The ID of the entity that created this tool call output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    /// The unique ID of the apply patch tool call output. Populated when this
    /// item is returned via API.
    pub id: String,
    /// Optional textual output returned by the apply patch tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output: Option<String>,
    /// The status of the apply patch tool call output. One of `completed` or
    /// `failed`.
    pub status: ApplyPatchCallOutputStatus,
}

/// An invocation of a tool on an MCP server.
#[derive(Serialize, Deserialize)]
pub struct MCPToolCall {
    /// Unique identifier for the MCP tool call approval request.
    /// Include this value in a subsequent `mcp_approval_response` input to
    /// approve or reject the corresponding tool call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub approval_request_id: Option<String>,
    /// A JSON string of the arguments passed to the tool.
    pub arguments: String,
    /// The error from the tool call, if any.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub error: Option<String>,
    /// The unique ID of the tool call.
    pub id: String,
    /// The name of the tool that was run.
    pub name: String,
    /// The output from the tool call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output: Option<String>,
    /// The label of the MCP server running the tool.
    pub server_label: String,
    /// The status of the tool call. One of `in_progress`, `completed`,
    /// `incomplete`, `calling`, or `failed`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<MCPToolCallStatus>,
    /// The type of the item. Always `mcp_call`.
    pub r#type: MCPToolCallType,
}

/// The type of the item. Always `mcp_call`.
#[derive(Serialize, Deserialize)]
pub enum MCPToolCallType {
    #[serde(rename = "mcp_call")]
    McpCall,
}

/// A list of tools available on an MCP server.
#[derive(Serialize, Deserialize)]
pub struct MCPListTools {
    /// Error message if the server could not list tools.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub error: Option<String>,
    /// The unique ID of the list.
    pub id: String,
    /// The label of the MCP server.
    pub server_label: String,
    /// The tools available on the server.
    pub tools: Vec<MCPListToolsTool>,
    /// The type of the item. Always `mcp_list_tools`.
    pub r#type: MCPListToolsType,
}

/// The type of the item. Always `mcp_list_tools`.
#[derive(Serialize, Deserialize)]
pub enum MCPListToolsType {
    #[serde(rename = "mcp_list_tools")]
    McpListTools,
}

/// A request for human approval of a tool invocation.
#[derive(Serialize, Deserialize)]
pub struct MCPApprovalRequest {
    /// A JSON string of arguments for the tool.
    pub arguments: String,
    /// The unique ID of the approval request.
    pub id: String,
    /// The name of the tool to run.
    pub name: String,
    /// The label of the MCP server making the request.
    pub server_label: String,
    /// The type of the item. Always `mcp_approval_request`.
    pub r#type: MCPApprovalRequestType,
}

/// The type of the item. Always `mcp_approval_request`.
#[derive(Serialize, Deserialize)]
pub enum MCPApprovalRequestType {
    #[serde(rename = "mcp_approval_request")]
    McpApprovalRequest,
}

/// A call to a custom tool created by the model.
#[derive(Serialize, Deserialize)]
pub struct CustomToolCall {
    /// An identifier used to map this custom tool call to a tool call output.
    pub call_id: String,
    /// The unique ID of the custom tool call in the OpenAI platform.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The input for the custom tool call generated by the model.
    pub input: String,
    /// The name of the custom tool being called.
    pub name: String,
    /// The namespace of the custom tool being called.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub namespace: Option<String>,
    /// The type of the custom tool call. Always `custom_tool_call`.
    pub r#type: CustomToolCallType,
}

/// The type of the custom tool call. Always `custom_tool_call`.
#[derive(Serialize, Deserialize)]
pub enum CustomToolCallType {
    #[serde(rename = "custom_tool_call")]
    CustomToolCall,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum OutputContent {
    #[serde(rename = "output_text")]
    OutputText(OutputTextContent),
    #[serde(rename = "refusal")]
    Refusal(RefusalContent),
    #[serde(rename = "reasoning_text")]
    ReasoningText(ReasoningTextContent),
}

/// A logprob is the logarithmic probability that the model assigns to producing
/// a particular token at a given position in the sequence. Less-negative
/// (higher) logprob values indicate greater model confidence in that token
/// choice.
#[derive(Serialize, Deserialize)]
pub struct ResponseLogProb {
    /// The log probability of this token.
    pub logprob: f64,
    /// A possible text token.
    pub token: String,
    /// The log probability of the top 20 most likely tokens.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub top_logprobs: Option<Vec<ResponseLogProbTopLogprobsItem>>,
}

#[derive(Serialize, Deserialize)]
pub struct ResponseLogProbTopLogprobsItem {
    /// The log probability of this token.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub logprob: Option<f64>,
    /// A possible text token.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub token: Option<String>,
}

pub type ResponsePromptVariablesValueValueString = Option<String>;

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum ResponsePromptVariablesValueValue {
    ResponsePromptVariablesValueValueString(ResponsePromptVariablesValueValueString),
    InputTextContent(InputTextContent),
    InputImageContent(InputImageContent),
    InputFileContent(InputFileContent),
}

pub type ResponsePromptVariables =
    Option<Option<HashMap<String, ResponsePromptVariablesValueValue>>>;

/// Constrains effort on reasoning for
/// [reasoning models](https://platform.openai.com/docs/guides/reasoning).
/// Currently supported values are `none`, `minimal`, `low`, `medium`, `high`,
/// and `xhigh`. Reducing reasoning effort can result in faster responses and
/// fewer tokens used on reasoning in a response.
///
/// - `gpt-5.1` defaults to `none`, which does not perform reasoning. The
///   supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and
///   `high`. Tool calls are supported for all reasoning values in gpt-5.1.
/// - All models before `gpt-5.1` default to `medium` reasoning effort, and do
///   not support `none`.
/// - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning
///   effort.
/// - `xhigh` is supported for all models after `gpt-5.1-codex-max`.
#[derive(Serialize, Deserialize)]
pub enum ReasoningEffortValue {
    #[serde(rename = "none")]
    None,
    #[serde(rename = "minimal")]
    Minimal,
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "medium")]
    Medium,
    #[serde(rename = "high")]
    High,
    #[serde(rename = "xhigh")]
    Xhigh,
}

pub type ReasoningEffort = Option<Option<ReasoningEffortValue>>;

/// An object specifying the format that the model must output.
///
/// Configuring `{ "type": "json_schema" }` enables Structured Outputs,
/// which ensures the model will match your supplied JSON schema. Learn more in
/// the [Structured Outputs guide](/docs/guides/structured-outputs).
///
/// The default format is `{ "type": "text" }` with no additional options.
///
/// **Not recommended for gpt-4o and newer models:**
///
/// Setting to `{ "type": "json_object" }` enables the older JSON mode, which
/// ensures the message the model generates is valid JSON. Using `json_schema`
/// is preferred for models that support it.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum TextResponseFormatConfiguration {
    #[serde(rename = "text")]
    Text(ResponseFormatText),
    #[serde(rename = "json_schema")]
    JsonSchema(TextResponseFormatJsonSchema),
    #[serde(rename = "json_object")]
    JsonObject(ResponseFormatJsonObject),
}

/// Constrains the verbosity of the model's response. Lower values will result
/// in more concise responses, while higher values will result in more verbose
/// responses. Currently supported values are `low`, `medium`, and `high`.
#[derive(Serialize, Deserialize)]
pub enum VerbosityValue {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "medium")]
    Medium,
    #[serde(rename = "high")]
    High,
}

pub type Verbosity = Option<Option<VerbosityValue>>;

/// Controls which (if any) tool is called by the model.
///
/// `none` means the model will not call any tool and instead generates a
/// message.
///
/// `auto` means the model can pick between generating a message or calling one
/// or more tools.
///
/// `required` means the model must call one or more tools.
#[derive(Serialize, Deserialize)]
pub enum ToolChoiceOptions {
    #[serde(rename = "none")]
    None,
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "required")]
    Required,
}

/// Constrains the tools available to the model to a pre-defined set.
#[derive(Serialize, Deserialize)]
pub struct ToolChoiceAllowed {
    /// Constrains the tools available to the model to a pre-defined set.
    ///
    /// `auto` allows the model to pick from among the allowed tools and
    /// generate a message.
    ///
    /// `required` requires the model to call one or more of the allowed tools.
    pub mode: ToolChoiceAllowedMode,
    /// A list of tool definitions that the model should be allowed to call.
    ///
    /// For the Responses API, the list of tool definitions might look like:
    /// ```json
    /// [
    ///   { "type": "function", "name": "get_weather" },
    ///   { "type": "mcp", "server_label": "deepwiki" },
    ///   { "type": "image_generation" }
    /// ]
    /// ```
    pub tools: Vec<Value>,
    /// Allowed tool configuration type. Always `allowed_tools`.
    pub r#type: ToolChoiceAllowedType,
}

/// Constrains the tools available to the model to a pre-defined set.
///
/// `auto` allows the model to pick from among the allowed tools and generate a
/// message.
///
/// `required` requires the model to call one or more of the allowed tools.
#[derive(Serialize, Deserialize)]
pub enum ToolChoiceAllowedMode {
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "required")]
    Required,
}

/// Allowed tool configuration type. Always `allowed_tools`.
#[derive(Serialize, Deserialize)]
pub enum ToolChoiceAllowedType {
    #[serde(rename = "allowed_tools")]
    AllowedTools,
}

/// Indicates that the model should use a built-in tool to generate a response.
/// [Learn more about built-in tools](/docs/guides/tools).
#[derive(Serialize, Deserialize)]
pub struct ToolChoiceTypes {
    /// The type of hosted tool the model should to use. Learn more about
    /// [built-in tools](/docs/guides/tools).
    ///
    /// Allowed values are:
    /// - `file_search`
    /// - `web_search_preview`
    /// - `computer`
    /// - `computer_use_preview`
    /// - `computer_use`
    /// - `code_interpreter`
    /// - `image_generation`
    pub r#type: ToolChoiceTypesType,
}

/// The type of hosted tool the model should to use. Learn more about
/// [built-in tools](/docs/guides/tools).
///
/// Allowed values are:
/// - `file_search`
/// - `web_search_preview`
/// - `computer`
/// - `computer_use_preview`
/// - `computer_use`
/// - `code_interpreter`
/// - `image_generation`
#[derive(Serialize, Deserialize)]
pub enum ToolChoiceTypesType {
    #[serde(rename = "file_search")]
    FileSearch,
    #[serde(rename = "web_search_preview")]
    WebSearchPreview,
    #[serde(rename = "computer")]
    Computer,
    #[serde(rename = "computer_use_preview")]
    ComputerUsePreview,
    #[serde(rename = "computer_use")]
    ComputerUse,
    #[serde(rename = "web_search_preview_2025_03_11")]
    WebSearchPreview20250311,
    #[serde(rename = "image_generation")]
    ImageGeneration,
    #[serde(rename = "code_interpreter")]
    CodeInterpreter,
}

/// Use this option to force the model to call a specific function.
#[derive(Serialize, Deserialize)]
pub struct ToolChoiceFunction {
    /// The name of the function to call.
    pub name: String,
    /// For function calling, the type is always `function`.
    pub r#type: ToolChoiceFunctionType,
}

/// For function calling, the type is always `function`.
#[derive(Serialize, Deserialize)]
pub enum ToolChoiceFunctionType {
    #[serde(rename = "function")]
    Function,
}

/// Use this option to force the model to call a specific tool on a remote MCP
/// server.
#[derive(Serialize, Deserialize)]
pub struct ToolChoiceMCP {
    /// The name of the tool to call on the server.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The label of the MCP server to use.
    pub server_label: String,
    /// For MCP tools, the type is always `mcp`.
    pub r#type: ToolChoiceMCPType,
}

/// For MCP tools, the type is always `mcp`.
#[derive(Serialize, Deserialize)]
pub enum ToolChoiceMCPType {
    #[serde(rename = "mcp")]
    Mcp,
}

/// Use this option to force the model to call a specific custom tool.
#[derive(Serialize, Deserialize)]
pub struct ToolChoiceCustom {
    /// The name of the custom tool to call.
    pub name: String,
    /// For custom tool calling, the type is always `custom`.
    pub r#type: ToolChoiceCustomType,
}

/// For custom tool calling, the type is always `custom`.
#[derive(Serialize, Deserialize)]
pub enum ToolChoiceCustomType {
    #[serde(rename = "custom")]
    Custom,
}

/// Forces the model to call the apply_patch tool when executing a tool call.
#[derive(Serialize, Deserialize)]
pub struct SpecificApplyPatchParam {
    /// The tool to call. Always `apply_patch`.
    pub r#type: SpecificApplyPatchParamType,
}

/// The tool to call. Always `apply_patch`.
#[derive(Serialize, Deserialize)]
pub enum SpecificApplyPatchParamType {
    #[serde(rename = "apply_patch")]
    ApplyPatch,
}

/// Forces the model to call the shell tool when a tool call is required.
#[derive(Serialize, Deserialize)]
pub struct SpecificFunctionShellParam {
    /// The tool to call. Always `shell`.
    pub r#type: SpecificFunctionShellParamType,
}

/// The tool to call. Always `shell`.
#[derive(Serialize, Deserialize)]
pub enum SpecificFunctionShellParamType {
    #[serde(rename = "shell")]
    Shell,
}

/// A tool that can be used to generate a response.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum Tool {
    FunctionTool(FunctionTool),
    FileSearchTool(FileSearchTool),
    ComputerTool(ComputerTool),
    ComputerUsePreviewTool(ComputerUsePreviewTool),
    WebSearchTool(WebSearchTool),
    MCPTool(MCPTool),
    CodeInterpreterTool(CodeInterpreterTool),
    ImageGenTool(ImageGenTool),
    LocalShellToolParam(LocalShellToolParam),
    FunctionShellToolParam(FunctionShellToolParam),
    CustomToolParam(CustomToolParam),
    NamespaceToolParam(NamespaceToolParam),
    ToolSearchToolParam(ToolSearchToolParam),
    WebSearchPreviewTool(WebSearchPreviewTool),
    ApplyPatchToolParam(ApplyPatchToolParam),
}

/// A list of one or many input items to the model, containing different content
/// types.
pub type InputMessageContentList = Option<Vec<InputContent>>;

/// Labels an `assistant` message as intermediate commentary (`commentary`) or
/// the final answer (`final_answer`). For models like `gpt-5.3-codex` and
/// beyond, when sending follow-up requests, preserve and resend phase on all
/// assistant messages — dropping it can degrade performance. Not used for user
/// messages.
#[derive(Serialize, Deserialize)]
pub enum MessagePhase {
    #[serde(rename = "commentary")]
    Commentary,
    #[serde(rename = "final_answer")]
    FinalAnswer,
}

/// A message input to the model with a role indicating instruction following
/// hierarchy. Instructions given with the `developer` or `system` role take
/// precedence over instructions given with the `user` role.
#[derive(Serialize, Deserialize)]
pub struct InputMessage {
    pub content: InputMessageContentList,
    /// The role of the message input. One of `user`, `system`, or `developer`.
    pub role: InputMessageRole,
    /// The status of item. One of `in_progress`, `completed`, or
    /// `incomplete`. Populated when items are returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<InputMessageStatus>,
    /// The type of the message input. Always set to `message`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub r#type: Option<InputMessageType>,
}

/// The role of the message input. One of `user`, `system`, or `developer`.
#[derive(Serialize, Deserialize)]
pub enum InputMessageRole {
    #[serde(rename = "user")]
    User,
    #[serde(rename = "system")]
    System,
    #[serde(rename = "developer")]
    Developer,
}

/// The status of item. One of `in_progress`, `completed`, or
/// `incomplete`. Populated when items are returned via API.
#[derive(Serialize, Deserialize)]
pub enum InputMessageStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The type of the message input. Always set to `message`.
#[derive(Serialize, Deserialize)]
pub enum InputMessageType {
    #[serde(rename = "message")]
    Message,
}

/// The output of a computer tool call.
#[derive(Serialize, Deserialize)]
pub struct ComputerCallOutputItemParam {
    /// The safety checks reported by the API that have been acknowledged by the
    /// developer.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub acknowledged_safety_checks: Option<Vec<ComputerCallSafetyCheckParam>>,
    /// The ID of the computer tool call that produced the output.
    pub call_id: String,
    /// The ID of the computer tool call output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    pub output: ComputerScreenshotImage,
    /// The status of the message input. One of `in_progress`, `completed`, or
    /// `incomplete`. Populated when input items are returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<FunctionCallItemStatus>,
    /// The type of the computer tool call output. Always
    /// `computer_call_output`.
    pub r#type: ComputerCallOutputItemParamType,
}

/// The type of the computer tool call output. Always `computer_call_output`.
#[derive(Serialize, Deserialize)]
pub enum ComputerCallOutputItemParamType {
    #[serde(rename = "computer_call_output")]
    ComputerCallOutput,
}

/// The output of a function tool call.
#[derive(Serialize, Deserialize)]
pub struct FunctionCallOutputItemParam {
    /// The unique ID of the function tool call generated by the model.
    pub call_id: String,
    /// The unique ID of the function tool call output. Populated when this item
    /// is returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// Text, image, or file output of the function tool call.
    pub output: FunctionCallOutputItemParamOutput,
    /// The status of the item. One of `in_progress`, `completed`, or
    /// `incomplete`. Populated when items are returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<FunctionCallItemStatus>,
    /// The type of the function tool call output. Always
    /// `function_call_output`.
    pub r#type: FunctionCallOutputItemParamType,
}

/// A JSON string of the output of the function tool call.
pub type FunctionCallOutputItemParamOutputString = Option<String>;

/// A piece of message content, such as text, an image, or a file.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum FunctionCallOutputItemParamOutputArrayItem {
    #[serde(rename = "input_text")]
    InputText(InputTextContentParam),
    #[serde(rename = "input_image")]
    InputImage(InputImageContentParamAutoParam),
    #[serde(rename = "input_file")]
    InputFile(InputFileContentParam),
}

/// An array of content outputs (text, image, file) for the function tool call.
pub type FunctionCallOutputItemParamOutputArray =
    Option<Vec<FunctionCallOutputItemParamOutputArrayItem>>;

/// Text, image, or file output of the function tool call.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum FunctionCallOutputItemParamOutput {
    FunctionCallOutputItemParamOutputString(FunctionCallOutputItemParamOutputString),
    FunctionCallOutputItemParamOutputArray(FunctionCallOutputItemParamOutputArray),
}

/// The type of the function tool call output. Always `function_call_output`.
#[derive(Serialize, Deserialize)]
pub enum FunctionCallOutputItemParamType {
    #[serde(rename = "function_call_output")]
    FunctionCallOutput,
}

#[derive(Serialize, Deserialize)]
pub struct ToolSearchCallItemParam {
    /// The arguments supplied to the tool search call.
    pub arguments: EmptyModelParam,
    /// The unique ID of the tool search call generated by the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub call_id: Option<String>,
    /// Whether tool search was executed by the server or by the client.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub execution: Option<ToolSearchExecutionType>,
    /// The unique ID of this tool search call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The status of the tool search call.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<FunctionCallItemStatus>,
    /// The item type. Always `tool_search_call`.
    pub r#type: ToolSearchCallItemParamType,
}

/// The item type. Always `tool_search_call`.
#[derive(Serialize, Deserialize)]
pub enum ToolSearchCallItemParamType {
    #[serde(rename = "tool_search_call")]
    ToolSearchCall,
}

#[derive(Serialize, Deserialize)]
pub struct ToolSearchOutputItemParam {
    /// The unique ID of the tool search call generated by the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub call_id: Option<String>,
    /// Whether tool search was executed by the server or by the client.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub execution: Option<ToolSearchExecutionType>,
    /// The unique ID of this tool search output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The status of the tool search output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<FunctionCallItemStatus>,
    /// The loaded tool definitions returned by the tool search output.
    pub tools: Vec<Tool>,
    /// The item type. Always `tool_search_output`.
    pub r#type: ToolSearchOutputItemParamType,
}

/// The item type. Always `tool_search_output`.
#[derive(Serialize, Deserialize)]
pub enum ToolSearchOutputItemParamType {
    #[serde(rename = "tool_search_output")]
    ToolSearchOutput,
}

/// A compaction item generated by the [`v1/responses/compact`
/// API](/docs/api-reference/responses/compact).
#[derive(Serialize, Deserialize)]
pub struct CompactionSummaryItemParam {
    /// The encrypted content of the compaction summary.
    pub encrypted_content: String,
    /// The ID of the compaction item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The type of the item. Always `compaction`.
    pub r#type: CompactionSummaryItemParamType,
}

/// The type of the item. Always `compaction`.
#[derive(Serialize, Deserialize)]
pub enum CompactionSummaryItemParamType {
    #[serde(rename = "compaction")]
    Compaction,
}

/// The output of a local shell tool call.
#[derive(Serialize, Deserialize)]
pub struct LocalShellToolCallOutput {
    /// The unique ID of the local shell tool call generated by the model.
    pub id: String,
    /// A JSON string of the output of the local shell tool call.
    pub output: String,
    /// The status of the item. One of `in_progress`, `completed`, or
    /// `incomplete`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<LocalShellToolCallOutputStatus>,
    /// The type of the local shell tool call output. Always
    /// `local_shell_call_output`.
    pub r#type: LocalShellToolCallOutputType,
}

/// The status of the item. One of `in_progress`, `completed`, or `incomplete`.
#[derive(Serialize, Deserialize)]
pub enum LocalShellToolCallOutputStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The type of the local shell tool call output. Always
/// `local_shell_call_output`.
#[derive(Serialize, Deserialize)]
pub enum LocalShellToolCallOutputType {
    #[serde(rename = "local_shell_call_output")]
    LocalShellCallOutput,
}

/// A tool representing a request to execute one or more shell commands.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallItemParam {
    /// The shell commands and limits that describe how to run the tool call.
    pub action: FunctionShellActionParam,
    /// The unique ID of the shell tool call generated by the model.
    pub call_id: String,
    /// The environment to execute the shell commands in.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub environment: Option<FunctionShellCallItemParamEnvironment>,
    /// The unique ID of the shell tool call. Populated when this item is
    /// returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The status of the shell call. One of `in_progress`, `completed`, or
    /// `incomplete`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<FunctionShellCallItemStatus>,
    /// The type of the item. Always `shell_call`.
    pub r#type: FunctionShellCallItemParamType,
}

/// The environment to execute the shell commands in.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum FunctionShellCallItemParamEnvironment {
    #[serde(rename = "local")]
    Local(LocalEnvironmentParam),
    #[serde(rename = "container_reference")]
    ContainerReference(ContainerReferenceParam),
}

/// The type of the item. Always `shell_call`.
#[derive(Serialize, Deserialize)]
pub enum FunctionShellCallItemParamType {
    #[serde(rename = "shell_call")]
    ShellCall,
}

/// The streamed output items emitted by a shell tool call.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutputItemParam {
    /// The unique ID of the shell tool call generated by the model.
    pub call_id: String,
    /// The unique ID of the shell tool call output. Populated when this item is
    /// returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The maximum number of UTF-8 characters captured for this shell call's
    /// combined output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_output_length: Option<i64>,
    /// Captured chunks of stdout and stderr output, along with their associated
    /// outcomes.
    pub output: Vec<FunctionShellCallOutputContentParam>,
    /// The status of the shell call output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<FunctionShellCallItemStatus>,
    /// The type of the item. Always `shell_call_output`.
    pub r#type: FunctionShellCallOutputItemParamType,
}

/// The type of the item. Always `shell_call_output`.
#[derive(Serialize, Deserialize)]
pub enum FunctionShellCallOutputItemParamType {
    #[serde(rename = "shell_call_output")]
    ShellCallOutput,
}

/// A tool call representing a request to create, delete, or update files using
/// diff patches.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchToolCallItemParam {
    /// The unique ID of the apply patch tool call generated by the model.
    pub call_id: String,
    /// The unique ID of the apply patch tool call. Populated when this item is
    /// returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The specific create, delete, or update instruction for the apply_patch
    /// tool call.
    pub operation: ApplyPatchOperationParam,
    /// The status of the apply patch tool call. One of `in_progress` or
    /// `completed`.
    pub status: ApplyPatchCallStatusParam,
    /// The type of the item. Always `apply_patch_call`.
    pub r#type: ApplyPatchToolCallItemParamType,
}

/// The type of the item. Always `apply_patch_call`.
#[derive(Serialize, Deserialize)]
pub enum ApplyPatchToolCallItemParamType {
    #[serde(rename = "apply_patch_call")]
    ApplyPatchCall,
}

/// The streamed output emitted by an apply patch tool call.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchToolCallOutputItemParam {
    /// The unique ID of the apply patch tool call generated by the model.
    pub call_id: String,
    /// The unique ID of the apply patch tool call output. Populated when this
    /// item is returned via API.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// Optional human-readable log text from the apply patch tool (e.g., patch
    /// results or errors).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output: Option<String>,
    /// The status of the apply patch tool call output. One of `completed` or
    /// `failed`.
    pub status: ApplyPatchCallOutputStatusParam,
    /// The type of the item. Always `apply_patch_call_output`.
    pub r#type: ApplyPatchToolCallOutputItemParamType,
}

/// The type of the item. Always `apply_patch_call_output`.
#[derive(Serialize, Deserialize)]
pub enum ApplyPatchToolCallOutputItemParamType {
    #[serde(rename = "apply_patch_call_output")]
    ApplyPatchCallOutput,
}

/// A response to an MCP approval request.
#[derive(Serialize, Deserialize)]
pub struct MCPApprovalResponse {
    /// The ID of the approval request being answered.
    pub approval_request_id: String,
    /// Whether the request was approved.
    pub approve: bool,
    /// The unique ID of the approval response
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// Optional reason for the decision.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    /// The type of the item. Always `mcp_approval_response`.
    pub r#type: MCPApprovalResponseType,
}

/// The type of the item. Always `mcp_approval_response`.
#[derive(Serialize, Deserialize)]
pub enum MCPApprovalResponseType {
    #[serde(rename = "mcp_approval_response")]
    McpApprovalResponse,
}

/// The output of a custom tool call from your code, being sent back to the
/// model.
#[derive(Serialize, Deserialize)]
pub struct CustomToolCallOutput {
    /// The call ID, used to map this custom tool call output to a custom tool
    /// call.
    pub call_id: String,
    /// The unique ID of the custom tool call output in the OpenAI platform.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// The output from the custom tool call generated by your code.
    /// Can be a string or an list of output content.
    pub output: CustomToolCallOutputOutput,
    /// The type of the custom tool call output. Always
    /// `custom_tool_call_output`.
    pub r#type: CustomToolCallOutputType,
}

/// A string of the output of the custom tool call.
pub type CustomToolCallOutputOutputString = Option<String>;

/// Text, image, or file output of the custom tool call.
pub type CustomToolCallOutputOutputArray = Option<Vec<FunctionAndCustomToolCallOutput>>;

/// The output from the custom tool call generated by your code.
/// Can be a string or an list of output content.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum CustomToolCallOutputOutput {
    CustomToolCallOutputOutputString(CustomToolCallOutputOutputString),
    CustomToolCallOutputOutputArray(CustomToolCallOutputOutputArray),
}

/// The type of the custom tool call output. Always `custom_tool_call_output`.
#[derive(Serialize, Deserialize)]
pub enum CustomToolCallOutputType {
    #[serde(rename = "custom_tool_call_output")]
    CustomToolCallOutput,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum OutputMessageContent {
    #[serde(rename = "output_text")]
    OutputText(OutputTextContent),
    #[serde(rename = "refusal")]
    Refusal(RefusalContent),
}

pub type VectorStoreFileAttributesValueValueString = Option<String>;

pub type VectorStoreFileAttributesValueValueNumber = Option<f64>;

pub type VectorStoreFileAttributesValueValueBoolean = Option<bool>;

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum VectorStoreFileAttributesValueValue {
    VectorStoreFileAttributesValueValueString(VectorStoreFileAttributesValueValueString),
    VectorStoreFileAttributesValueValueNumber(VectorStoreFileAttributesValueValueNumber),
    VectorStoreFileAttributesValueValueBoolean(VectorStoreFileAttributesValueValueBoolean),
}

pub type VectorStoreFileAttributes =
    Option<Option<HashMap<String, VectorStoreFileAttributesValueValue>>>;

/// Action type "search" - Performs a web search query.
#[derive(Serialize, Deserialize)]
pub struct WebSearchActionSearch {
    /// The search queries.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub queries: Option<Vec<String>>,
    /// [DEPRECATED] The search query.
    pub query: String,
    /// The sources used in the search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sources: Option<Vec<WebSearchActionSearchSourcesItem>>,
}

/// A source used in the search.
#[derive(Serialize, Deserialize)]
pub struct WebSearchActionSearchSourcesItem {
    /// The type of source. Always `url`.
    pub r#type: WebSearchActionSearchSourcesItemType,
    /// The URL of the source.
    pub url: String,
}

/// The type of source. Always `url`.
#[derive(Serialize, Deserialize)]
pub enum WebSearchActionSearchSourcesItemType {
    #[serde(rename = "url")]
    Url,
}

/// Action type "open_page" - Opens a specific URL from search results.
#[derive(Serialize, Deserialize)]
pub struct WebSearchActionOpenPage {
    /// The URL opened by the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub url: Option<String>,
}

/// Action type "find_in_page": Searches for a pattern within a loaded page.
#[derive(Serialize, Deserialize)]
pub struct WebSearchActionFind {
    /// The pattern or text to search for within the page.
    pub pattern: String,
    /// The URL of the page searched for the pattern.
    pub url: String,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum ComputerAction {
    #[serde(rename = "click")]
    Click(ClickParam),
    #[serde(rename = "double_click")]
    DoubleClick(DoubleClickAction),
    #[serde(rename = "drag")]
    Drag(DragParam),
    #[serde(rename = "keypress")]
    Keypress(KeyPressAction),
    #[serde(rename = "move")]
    Move(MoveParam),
    #[serde(rename = "screenshot")]
    Screenshot(ScreenshotParam),
    #[serde(rename = "scroll")]
    Scroll(ScrollParam),
    #[serde(rename = "type")]
    Type(TypeParam),
    #[serde(rename = "wait")]
    Wait(WaitParam),
}

/// Flattened batched actions for `computer_use`. Each action includes an
/// `type` discriminator and action-specific fields.
pub type ComputerActionList = Option<Vec<ComputerAction>>;

/// A pending safety check for the computer call.
#[derive(Serialize, Deserialize)]
pub struct ComputerCallSafetyCheckParam {
    /// The type of the pending safety check.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub code: Option<String>,
    /// The ID of the pending safety check.
    pub id: String,
    /// Details about the pending safety check.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<String>,
}

/// Reasoning text from the model.
#[derive(Serialize, Deserialize)]
pub struct ReasoningTextContent {
    /// The reasoning text from the model.
    pub text: String,
    /// The type of the reasoning text. Always `reasoning_text`.
    pub r#type: ReasoningTextContentType,
}

/// The type of the reasoning text. Always `reasoning_text`.
#[derive(Serialize, Deserialize)]
pub enum ReasoningTextContentType {
    #[serde(rename = "reasoning_text")]
    ReasoningText,
}

/// A summary text from the model.
#[derive(Serialize, Deserialize)]
pub struct SummaryTextContent {
    /// A summary of the reasoning output from the model so far.
    pub text: String,
    /// The type of the object. Always `summary_text`.
    pub r#type: SummaryTextContentType,
}

/// The type of the object. Always `summary_text`.
#[derive(Serialize, Deserialize)]
pub enum SummaryTextContentType {
    #[serde(rename = "summary_text")]
    SummaryText,
}

#[derive(Serialize, Deserialize)]
pub enum ToolSearchExecutionType {
    #[serde(rename = "server")]
    Server,
    #[serde(rename = "client")]
    Client,
}

#[derive(Serialize, Deserialize)]
pub enum FunctionCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

#[derive(Serialize, Deserialize)]
pub enum FunctionCallOutputStatusEnum {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The logs output from the code interpreter.
#[derive(Serialize, Deserialize)]
pub struct CodeInterpreterOutputLogs {
    /// The logs output from the code interpreter.
    pub logs: String,
}

/// The image output from the code interpreter.
#[derive(Serialize, Deserialize)]
pub struct CodeInterpreterOutputImage {
    /// The URL of the image output from the code interpreter.
    pub url: String,
}

/// Execute a shell command on the server.
#[derive(Serialize, Deserialize)]
pub struct LocalShellExecAction {
    /// The command to run.
    pub command: Vec<String>,
    /// Environment variables to set for the command.
    pub env: HashMap<String, String>,
    /// Optional timeout in milliseconds for the command.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timeout_ms: Option<i64>,
    /// The type of the local shell action. Always `exec`.
    pub r#type: LocalShellExecActionType,
    /// Optional user to run the command as.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user: Option<String>,
    /// Optional working directory to run the command in.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub working_directory: Option<String>,
}

/// The type of the local shell action. Always `exec`.
#[derive(Serialize, Deserialize)]
pub enum LocalShellExecActionType {
    #[serde(rename = "exec")]
    Exec,
}

/// Execute a shell command.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellAction {
    pub commands: Vec<String>,
    /// Optional maximum number of characters to return from each command.
    pub max_output_length: Option<i64>,
    /// Optional timeout in milliseconds for the commands.
    pub timeout_ms: Option<i64>,
}

/// Represents the use of a local environment to perform shell actions.
#[derive(Serialize, Deserialize)]
pub struct LocalEnvironmentResource {}

/// Represents a container created with /v1/containers.
#[derive(Serialize, Deserialize)]
pub struct ContainerReferenceResource {
    pub container_id: String,
}

#[derive(Serialize, Deserialize)]
pub enum LocalShellCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// The content of a shell tool call output that was emitted.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutputContent {
    /// The identifier of the actor that created the item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    /// Represents either an exit outcome (with an exit code) or a timeout
    /// outcome for a shell call output chunk.
    pub outcome: FunctionShellCallOutputContentOutcome,
    /// The standard error output that was captured.
    pub stderr: String,
    /// The standard output that was captured.
    pub stdout: String,
}

/// Represents either an exit outcome (with an exit code) or a timeout outcome
/// for a shell call output chunk.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum FunctionShellCallOutputContentOutcome {
    #[serde(rename = "timeout")]
    Timeout(FunctionShellCallOutputTimeoutOutcome),
    #[serde(rename = "exit")]
    Exit(FunctionShellCallOutputExitOutcome),
}

#[derive(Serialize, Deserialize)]
pub enum LocalShellCallOutputStatusEnum {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// Instruction describing how to create a file via the apply_patch tool.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchCreateFileOperation {
    /// Diff to apply.
    pub diff: String,
    /// Path of the file to create.
    pub path: String,
}

/// Instruction describing how to delete a file via the apply_patch tool.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchDeleteFileOperation {
    /// Path of the file to delete.
    pub path: String,
}

/// Instruction describing how to update a file via the apply_patch tool.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchUpdateFileOperation {
    /// Diff to apply.
    pub diff: String,
    /// Path of the file to update.
    pub path: String,
}

#[derive(Serialize, Deserialize)]
pub enum ApplyPatchCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
}

#[derive(Serialize, Deserialize)]
pub enum ApplyPatchCallOutputStatus {
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "failed")]
    Failed,
}

#[derive(Serialize, Deserialize)]
pub enum MCPToolCallStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
    #[serde(rename = "calling")]
    Calling,
    #[serde(rename = "failed")]
    Failed,
}

/// A tool available on an MCP server.
#[derive(Serialize, Deserialize)]
pub struct MCPListToolsTool {
    /// Additional annotations about the tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub annotations: Option<Value>,
    /// The description of the tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The JSON schema describing the tool's input.
    pub input_schema: Value,
    /// The name of the tool.
    pub name: String,
}

/// A text output from the model.
#[derive(Serialize, Deserialize)]
pub struct OutputTextContent {
    /// The annotations of the text output.
    pub annotations: Vec<Annotation>,
    pub logprobs: Vec<LogProb>,
    /// The text output from the model.
    pub text: String,
}

/// A refusal from the model.
#[derive(Serialize, Deserialize)]
pub struct RefusalContent {
    /// The refusal explanation from the model.
    pub refusal: String,
}

/// A text input to the model.
#[derive(Serialize, Deserialize)]
pub struct InputTextContent {
    /// The text input to the model.
    pub text: String,
    /// The type of the input item. Always `input_text`.
    pub r#type: InputTextContentType,
}

/// The type of the input item. Always `input_text`.
#[derive(Serialize, Deserialize)]
pub enum InputTextContentType {
    #[serde(rename = "input_text")]
    InputText,
}

/// An image input to the model. Learn about [image
/// inputs](/docs/guides/vision).
#[derive(Serialize, Deserialize)]
pub struct InputImageContent {
    /// The detail level of the image to be sent to the model. One of `high`,
    /// `low`, `auto`, or `original`. Defaults to `auto`.
    pub detail: ImageDetail,
    /// The ID of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_id: Option<String>,
    /// The URL of the image to be sent to the model. A fully qualified URL or
    /// base64 encoded image in a data URL.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub image_url: Option<String>,
    /// The type of the input item. Always `input_image`.
    pub r#type: InputImageContentType,
}

/// The type of the input item. Always `input_image`.
#[derive(Serialize, Deserialize)]
pub enum InputImageContentType {
    #[serde(rename = "input_image")]
    InputImage,
}

/// A file input to the model.
#[derive(Serialize, Deserialize)]
pub struct InputFileContent {
    /// The content of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_data: Option<String>,
    /// The ID of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_id: Option<String>,
    /// The URL of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_url: Option<String>,
    /// The name of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filename: Option<String>,
    /// The type of the input item. Always `input_file`.
    pub r#type: InputFileContentType,
}

/// The type of the input item. Always `input_file`.
#[derive(Serialize, Deserialize)]
pub enum InputFileContentType {
    #[serde(rename = "input_file")]
    InputFile,
}

/// Default response format. Used to generate text responses.
#[derive(Serialize, Deserialize)]
pub struct ResponseFormatText {}

/// JSON Schema response format. Used to generate structured JSON responses.
/// Learn more about [Structured Outputs](/docs/guides/structured-outputs).
#[derive(Serialize, Deserialize)]
pub struct TextResponseFormatJsonSchema {
    /// A description of what the response format is for, used by the model to
    /// determine how to respond in the format.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The name of the response format. Must be a-z, A-Z, 0-9, or contain
    /// underscores and dashes, with a maximum length of 64.
    pub name: String,
    pub schema: ResponseFormatJsonSchemaSchema,
    /// Whether to enable strict schema adherence when generating the output.
    /// If set to true, the model will always follow the exact schema defined
    /// in the `schema` field. Only a subset of JSON Schema is supported when
    /// `strict` is `true`. To learn more, read the [Structured Outputs
    /// guide](/docs/guides/structured-outputs).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub strict: Option<bool>,
}

/// JSON object response format. An older method of generating JSON responses.
/// Using `json_schema` is recommended for models that support it. Note that the
/// model will not generate JSON without a system or user message instructing it
/// to do so.
#[derive(Serialize, Deserialize)]
pub struct ResponseFormatJsonObject {}

/// Defines a function in your own code the model can choose to call. Learn more about [function calling](https://platform.openai.com/docs/guides/function-calling).
#[derive(Serialize, Deserialize)]
pub struct FunctionTool {
    /// Whether this function is deferred and loaded via tool search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub defer_loading: Option<bool>,
    /// A description of the function. Used by the model to determine whether or
    /// not to call the function.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The name of the function to call.
    pub name: String,
    /// A JSON schema object describing the parameters of the function.
    pub parameters: Option<HashMap<String, Value>>,
    /// Whether to enforce strict parameter validation. Default `true`.
    pub strict: Option<bool>,
    /// The type of the function tool. Always `function`.
    pub r#type: FunctionToolType,
}

/// The type of the function tool. Always `function`.
#[derive(Serialize, Deserialize)]
pub enum FunctionToolType {
    #[serde(rename = "function")]
    Function,
}

/// A tool that searches for relevant content from uploaded files. Learn more about the [file search tool](https://platform.openai.com/docs/guides/tools-file-search).
#[derive(Serialize, Deserialize)]
pub struct FileSearchTool {
    /// A filter to apply.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filters: Option<Filters>,
    /// The maximum number of results to return. This number should be between 1
    /// and 50 inclusive.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_num_results: Option<i64>,
    /// Ranking options for search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ranking_options: Option<RankingOptions>,
    /// The type of the file search tool. Always `file_search`.
    pub r#type: FileSearchToolType,
    /// The IDs of the vector stores to search.
    pub vector_store_ids: Vec<String>,
}

/// The type of the file search tool. Always `file_search`.
#[derive(Serialize, Deserialize)]
pub enum FileSearchToolType {
    #[serde(rename = "file_search")]
    FileSearch,
}

/// A tool that controls a virtual computer. Learn more about the [computer tool](https://platform.openai.com/docs/guides/tools-computer-use).
#[derive(Serialize, Deserialize)]
pub struct ComputerTool {
    /// The type of the computer tool. Always `computer`.
    pub r#type: ComputerToolType,
}

/// The type of the computer tool. Always `computer`.
#[derive(Serialize, Deserialize)]
pub enum ComputerToolType {
    #[serde(rename = "computer")]
    Computer,
}

/// A tool that controls a virtual computer. Learn more about the [computer tool](https://platform.openai.com/docs/guides/tools-computer-use).
#[derive(Serialize, Deserialize)]
pub struct ComputerUsePreviewTool {
    /// The height of the computer display.
    pub display_height: i64,
    /// The width of the computer display.
    pub display_width: i64,
    /// The type of computer environment to control.
    pub environment: ComputerEnvironment,
    /// The type of the computer use tool. Always `computer_use_preview`.
    pub r#type: ComputerUsePreviewToolType,
}

/// The type of the computer use tool. Always `computer_use_preview`.
#[derive(Serialize, Deserialize)]
pub enum ComputerUsePreviewToolType {
    #[serde(rename = "computer_use_preview")]
    ComputerUsePreview,
}

/// Search the Internet for sources related to the prompt. Learn more about the
/// [web search tool](/docs/guides/tools-web-search).
#[derive(Serialize, Deserialize)]
pub struct WebSearchTool {
    /// Filters for the search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filters: Option<WebSearchToolFilters>,
    /// High level guidance for the amount of context window space to use for
    /// the search. One of `low`, `medium`, or `high`. `medium` is the default.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub search_context_size: Option<WebSearchToolSearchContextSize>,
    /// The type of the web search tool. One of `web_search` or
    /// `web_search_2025_08_26`.
    pub r#type: WebSearchToolType,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user_location: Option<WebSearchApproximateLocation>,
}

/// Filters for the search.
#[derive(Serialize, Deserialize)]
pub struct WebSearchToolFilters {
    /// Allowed domains for the search. If not provided, all domains are
    /// allowed. Subdomains of the provided domains are allowed as well.
    ///
    /// Example: `["pubmed.ncbi.nlm.nih.gov"]`
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allowed_domains: Option<Vec<String>>,
}

/// High level guidance for the amount of context window space to use for the
/// search. One of `low`, `medium`, or `high`. `medium` is the default.
#[derive(Serialize, Deserialize)]
pub enum WebSearchToolSearchContextSize {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "medium")]
    Medium,
    #[serde(rename = "high")]
    High,
}

/// The type of the web search tool. One of `web_search` or
/// `web_search_2025_08_26`.
#[derive(Serialize, Deserialize)]
pub enum WebSearchToolType {
    #[serde(rename = "web_search")]
    WebSearch,
    #[serde(rename = "web_search_2025_08_26")]
    WebSearch20250826,
}

/// Give the model access to additional tools via remote Model Context Protocol
/// (MCP) servers. [Learn more about MCP](/docs/guides/tools-remote-mcp).
#[derive(Serialize, Deserialize)]
pub struct MCPTool {
    /// List of allowed tool names or a filter object.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allowed_tools: Option<MCPToolAllowedTools>,
    /// An OAuth access token that can be used with a remote MCP server, either
    /// with a custom MCP server URL or a service connector. Your application
    /// must handle the OAuth authorization flow and provide the token here.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authorization: Option<String>,
    /// Identifier for service connectors, like those available in ChatGPT. One
    /// of `server_url` or `connector_id` must be provided. Learn more about
    /// service connectors [here](/docs/guides/tools-remote-mcp#connectors).
    ///
    /// Currently supported `connector_id` values are:
    ///
    /// - Dropbox: `connector_dropbox`
    /// - Gmail: `connector_gmail`
    /// - Google Calendar: `connector_googlecalendar`
    /// - Google Drive: `connector_googledrive`
    /// - Microsoft Teams: `connector_microsoftteams`
    /// - Outlook Calendar: `connector_outlookcalendar`
    /// - Outlook Email: `connector_outlookemail`
    /// - SharePoint: `connector_sharepoint`
    #[serde(skip_serializing_if = "Option::is_none")]
    pub connector_id: Option<MCPToolConnectorId>,
    /// Whether this MCP tool is deferred and discovered via tool search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub defer_loading: Option<bool>,
    /// Optional HTTP headers to send to the MCP server. Use for authentication
    /// or other purposes.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub headers: Option<HashMap<String, String>>,
    /// Specify which of the MCP server's tools require approval.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub require_approval: Option<MCPToolRequireApproval>,
    /// Optional description of the MCP server, used to provide more context.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub server_description: Option<String>,
    /// A label for this MCP server, used to identify it in tool calls.
    pub server_label: String,
    /// The URL for the MCP server. One of `server_url` or `connector_id` must
    /// be provided.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub server_url: Option<String>,
    /// The type of the MCP tool. Always `mcp`.
    pub r#type: MCPToolType,
}

/// A string array of allowed tool names
pub type MCPToolAllowedToolsArray = Option<Vec<String>>;

/// List of allowed tool names or a filter object.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum MCPToolAllowedTools {
    MCPToolAllowedToolsArray(MCPToolAllowedToolsArray),
    MCPToolFilter(MCPToolFilter),
}

/// Identifier for service connectors, like those available in ChatGPT. One of
/// `server_url` or `connector_id` must be provided. Learn more about service
/// connectors [here](/docs/guides/tools-remote-mcp#connectors).
///
/// Currently supported `connector_id` values are:
///
/// - Dropbox: `connector_dropbox`
/// - Gmail: `connector_gmail`
/// - Google Calendar: `connector_googlecalendar`
/// - Google Drive: `connector_googledrive`
/// - Microsoft Teams: `connector_microsoftteams`
/// - Outlook Calendar: `connector_outlookcalendar`
/// - Outlook Email: `connector_outlookemail`
/// - SharePoint: `connector_sharepoint`
#[derive(Serialize, Deserialize)]
pub enum MCPToolConnectorId {
    #[serde(rename = "connector_dropbox")]
    ConnectorDropbox,
    #[serde(rename = "connector_gmail")]
    ConnectorGmail,
    #[serde(rename = "connector_googlecalendar")]
    ConnectorGooglecalendar,
    #[serde(rename = "connector_googledrive")]
    ConnectorGoogledrive,
    #[serde(rename = "connector_microsoftteams")]
    ConnectorMicrosoftteams,
    #[serde(rename = "connector_outlookcalendar")]
    ConnectorOutlookcalendar,
    #[serde(rename = "connector_outlookemail")]
    ConnectorOutlookemail,
    #[serde(rename = "connector_sharepoint")]
    ConnectorSharepoint,
}

/// Specify which of the MCP server's tools require approval. Can be
/// `always`, `never`, or a filter object associated with tools
/// that require approval.
#[derive(Serialize, Deserialize)]
pub struct MCPToolRequireApprovalVariant1 {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub always: Option<MCPToolFilter>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub never: Option<MCPToolFilter>,
}

/// Specify a single approval policy for all tools. One of `always` or
/// `never`. When set to `always`, all tools will require approval. When
/// set to `never`, all tools will not require approval.
pub type MCPToolRequireApprovalString = Option<String>;

/// Specify which of the MCP server's tools require approval.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum MCPToolRequireApproval {
    MCPToolRequireApprovalVariant1(MCPToolRequireApprovalVariant1),
    MCPToolRequireApprovalString(MCPToolRequireApprovalString),
}

/// The type of the MCP tool. Always `mcp`.
#[derive(Serialize, Deserialize)]
pub enum MCPToolType {
    #[serde(rename = "mcp")]
    Mcp,
}

/// A tool that runs Python code to help generate a response to a prompt.
#[derive(Serialize, Deserialize)]
pub struct CodeInterpreterTool {
    /// The code interpreter container. Can be a container ID or an object that
    /// specifies uploaded file IDs to make available to your code, along with
    /// an optional `memory_limit` setting.
    pub container: CodeInterpreterToolContainer,
    /// The type of the code interpreter tool. Always `code_interpreter`.
    pub r#type: CodeInterpreterToolType,
}

/// The container ID.
pub type CodeInterpreterToolContainerString = Option<String>;

/// The code interpreter container. Can be a container ID or an object that
/// specifies uploaded file IDs to make available to your code, along with an
/// optional `memory_limit` setting.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum CodeInterpreterToolContainer {
    CodeInterpreterToolContainerString(CodeInterpreterToolContainerString),
    AutoCodeInterpreterToolParam(AutoCodeInterpreterToolParam),
}

/// The type of the code interpreter tool. Always `code_interpreter`.
#[derive(Serialize, Deserialize)]
pub enum CodeInterpreterToolType {
    #[serde(rename = "code_interpreter")]
    CodeInterpreter,
}

/// A tool that generates images using the GPT image models.
#[derive(Serialize, Deserialize)]
pub struct ImageGenTool {
    /// Whether to generate a new image or edit an existing image. Default:
    /// `auto`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub action: Option<ImageGenActionEnum>,
    /// Background type for the generated image. One of `transparent`,
    /// `opaque`, or `auto`. Default: `auto`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub background: Option<ImageGenToolBackground>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub input_fidelity: Option<InputFidelity>,
    /// Optional mask for inpainting. Contains `image_url`
    /// (string, optional) and `file_id` (string, optional).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub input_image_mask: Option<ImageGenToolInputImageMask>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub model: Option<String>,
    /// Moderation level for the generated image. Default: `auto`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub moderation: Option<ImageGenToolModeration>,
    /// Compression level for the output image. Default: 100.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_compression: Option<i64>,
    /// The output format of the generated image. One of `png`, `webp`, or
    /// `jpeg`. Default: `png`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_format: Option<ImageGenToolOutputFormat>,
    /// Number of partial images to generate in streaming mode, from 0 (default
    /// value) to 3.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub partial_images: Option<i64>,
    /// The quality of the generated image. One of `low`, `medium`, `high`,
    /// or `auto`. Default: `auto`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub quality: Option<ImageGenToolQuality>,
    /// The size of the generated image. One of `1024x1024`, `1024x1536`,
    /// `1536x1024`, or `auto`. Default: `auto`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub size: Option<ImageGenToolSize>,
    /// The type of the image generation tool. Always `image_generation`.
    pub r#type: ImageGenToolType,
}

/// Background type for the generated image. One of `transparent`,
/// `opaque`, or `auto`. Default: `auto`.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolBackground {
    #[serde(rename = "transparent")]
    Transparent,
    #[serde(rename = "opaque")]
    Opaque,
    #[serde(rename = "auto")]
    Auto,
}

/// Optional mask for inpainting. Contains `image_url`
/// (string, optional) and `file_id` (string, optional).
#[derive(Serialize, Deserialize)]
pub struct ImageGenToolInputImageMask {
    /// File ID for the mask image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_id: Option<String>,
    /// Base64-encoded mask image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub image_url: Option<String>,
}

/// Moderation level for the generated image. Default: `auto`.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolModeration {
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "low")]
    Low,
}

/// The output format of the generated image. One of `png`, `webp`, or
/// `jpeg`. Default: `png`.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolOutputFormat {
    #[serde(rename = "png")]
    Png,
    #[serde(rename = "webp")]
    Webp,
    #[serde(rename = "jpeg")]
    Jpeg,
}

/// The quality of the generated image. One of `low`, `medium`, `high`,
/// or `auto`. Default: `auto`.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolQuality {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "medium")]
    Medium,
    #[serde(rename = "high")]
    High,
    #[serde(rename = "auto")]
    Auto,
}

/// The size of the generated image. One of `1024x1024`, `1024x1536`,
/// `1536x1024`, or `auto`. Default: `auto`.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolSize {
    #[serde(rename = "1024x1024")]
    N1024X1024,
    #[serde(rename = "1024x1536")]
    N1024X1536,
    #[serde(rename = "1536x1024")]
    N1536X1024,
    #[serde(rename = "auto")]
    Auto,
}

/// The type of the image generation tool. Always `image_generation`.
#[derive(Serialize, Deserialize)]
pub enum ImageGenToolType {
    #[serde(rename = "image_generation")]
    ImageGeneration,
}

/// A tool that allows the model to execute shell commands in a local
/// environment.
#[derive(Serialize, Deserialize)]
pub struct LocalShellToolParam {
    /// The type of the local shell tool. Always `local_shell`.
    pub r#type: LocalShellToolParamType,
}

/// The type of the local shell tool. Always `local_shell`.
#[derive(Serialize, Deserialize)]
pub enum LocalShellToolParamType {
    #[serde(rename = "local_shell")]
    LocalShell,
}

/// A tool that allows the model to execute shell commands.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellToolParam {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub environment: Option<FunctionShellToolParamEnvironment>,
    /// The type of the shell tool. Always `shell`.
    pub r#type: FunctionShellToolParamType,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum FunctionShellToolParamEnvironment {
    #[serde(rename = "container_auto")]
    ContainerAuto(ContainerAutoParam),
    #[serde(rename = "local")]
    Local(LocalEnvironmentParam),
    #[serde(rename = "container_reference")]
    ContainerReference(ContainerReferenceParam),
}

/// The type of the shell tool. Always `shell`.
#[derive(Serialize, Deserialize)]
pub enum FunctionShellToolParamType {
    #[serde(rename = "shell")]
    Shell,
}

/// A custom tool that processes input using a specified format. Learn more
/// about   [custom tools](/docs/guides/function-calling#custom-tools)
#[derive(Serialize, Deserialize)]
pub struct CustomToolParam {
    /// Whether this tool should be deferred and discovered via tool search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub defer_loading: Option<bool>,
    /// Optional description of the custom tool, used to provide more context.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// The input format for the custom tool. Default is unconstrained text.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub format: Option<CustomToolParamFormat>,
    /// The name of the custom tool, used to identify it in tool calls.
    pub name: String,
    /// The type of the custom tool. Always `custom`.
    pub r#type: CustomToolParamType,
}

/// The input format for the custom tool. Default is unconstrained text.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum CustomToolParamFormat {
    #[serde(rename = "text")]
    Text(CustomTextFormatParam),
    #[serde(rename = "grammar")]
    Grammar(CustomGrammarFormatParam),
}

/// The type of the custom tool. Always `custom`.
#[derive(Serialize, Deserialize)]
pub enum CustomToolParamType {
    #[serde(rename = "custom")]
    Custom,
}

/// Groups function/custom tools under a shared namespace.
#[derive(Serialize, Deserialize)]
pub struct NamespaceToolParam {
    /// A description of the namespace shown to the model.
    pub description: String,
    /// The namespace name used in tool calls (for example, `crm`).
    pub name: String,
    /// The function/custom tools available inside this namespace.
    pub tools: Vec<NamespaceToolParamToolsItem>,
    /// The type of the tool. Always `namespace`.
    pub r#type: NamespaceToolParamType,
}

/// A function or custom tool that belongs to a namespace.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum NamespaceToolParamToolsItem {
    #[serde(rename = "function")]
    Function(FunctionToolParam),
    #[serde(rename = "custom")]
    Custom(CustomToolParam),
}

/// The type of the tool. Always `namespace`.
#[derive(Serialize, Deserialize)]
pub enum NamespaceToolParamType {
    #[serde(rename = "namespace")]
    Namespace,
}

/// Hosted or BYOT tool search configuration for deferred tools.
#[derive(Serialize, Deserialize)]
pub struct ToolSearchToolParam {
    /// Description shown to the model for a client-executed tool search tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Whether tool search is executed by the server or by the client.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub execution: Option<ToolSearchExecutionType>,
    /// Parameter schema for a client-executed tool search tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parameters: Option<EmptyModelParam>,
    /// The type of the tool. Always `tool_search`.
    pub r#type: ToolSearchToolParamType,
}

/// The type of the tool. Always `tool_search`.
#[derive(Serialize, Deserialize)]
pub enum ToolSearchToolParamType {
    #[serde(rename = "tool_search")]
    ToolSearch,
}

/// This tool searches the web for relevant results to use in a response. Learn more about the [web search tool](https://platform.openai.com/docs/guides/tools-web-search).
#[derive(Serialize, Deserialize)]
pub struct WebSearchPreviewTool {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub search_content_types: Option<Vec<SearchContentType>>,
    /// High level guidance for the amount of context window space to use for
    /// the search. One of `low`, `medium`, or `high`. `medium` is the default.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub search_context_size: Option<SearchContextSize>,
    /// The type of the web search tool. One of `web_search_preview` or
    /// `web_search_preview_2025_03_11`.
    pub r#type: WebSearchPreviewToolType,
    /// The user's location.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user_location: Option<ApproximateLocation>,
}

/// The type of the web search tool. One of `web_search_preview` or
/// `web_search_preview_2025_03_11`.
#[derive(Serialize, Deserialize)]
pub enum WebSearchPreviewToolType {
    #[serde(rename = "web_search_preview")]
    WebSearchPreview,
    #[serde(rename = "web_search_preview_2025_03_11")]
    WebSearchPreview20250311,
}

/// Allows the assistant to create, delete, or update files using unified diffs.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchToolParam {
    /// The type of the tool. Always `apply_patch`.
    pub r#type: ApplyPatchToolParamType,
}

/// The type of the tool. Always `apply_patch`.
#[derive(Serialize, Deserialize)]
pub enum ApplyPatchToolParamType {
    #[serde(rename = "apply_patch")]
    ApplyPatch,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum InputContent {
    #[serde(rename = "input_text")]
    InputText(InputTextContent),
    #[serde(rename = "input_image")]
    InputImage(InputImageContent),
    #[serde(rename = "input_file")]
    InputFile(InputFileContent),
}

/// A computer screenshot image used with the computer use tool.
#[derive(Serialize, Deserialize)]
pub struct ComputerScreenshotImage {
    /// The identifier of an uploaded file that contains the screenshot.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_id: Option<String>,
    /// The URL of the screenshot image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub image_url: Option<String>,
    /// Specifies the event type. For a computer screenshot, this property is
    /// always set to `computer_screenshot`.
    pub r#type: ComputerScreenshotImageType,
}

/// Specifies the event type. For a computer screenshot, this property is
/// always set to `computer_screenshot`.
#[derive(Serialize, Deserialize)]
pub enum ComputerScreenshotImageType {
    #[serde(rename = "computer_screenshot")]
    ComputerScreenshot,
}

#[derive(Serialize, Deserialize)]
pub enum FunctionCallItemStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// A text input to the model.
#[derive(Serialize, Deserialize)]
pub struct InputTextContentParam {
    /// The text input to the model.
    pub text: String,
}

/// An image input to the model. Learn about [image inputs](/docs/guides/vision)
#[derive(Serialize, Deserialize)]
pub struct InputImageContentParamAutoParam {
    /// The detail level of the image to be sent to the model. One of `high`,
    /// `low`, `auto`, or `original`. Defaults to `auto`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub detail: Option<DetailEnum>,
    /// The ID of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_id: Option<String>,
    /// The URL of the image to be sent to the model. A fully qualified URL or
    /// base64 encoded image in a data URL.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub image_url: Option<String>,
}

/// A file input to the model.
#[derive(Serialize, Deserialize)]
pub struct InputFileContentParam {
    /// The base64-encoded data of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_data: Option<String>,
    /// The ID of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_id: Option<String>,
    /// The URL of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_url: Option<String>,
    /// The name of the file to be sent to the model.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub filename: Option<String>,
}

pub type EmptyModelParam = Option<Value>;

/// Commands and limits describing how to run the shell tool call.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellActionParam {
    /// Ordered shell commands for the execution environment to run.
    pub commands: Vec<String>,
    /// Maximum number of UTF-8 characters to capture from combined stdout and
    /// stderr output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_output_length: Option<i64>,
    /// Maximum wall-clock time in milliseconds to allow the shell commands to
    /// run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timeout_ms: Option<i64>,
}

#[derive(Serialize, Deserialize)]
pub struct LocalEnvironmentParam {
    /// An optional list of skills.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub skills: Option<Vec<LocalSkillParam>>,
}

#[derive(Serialize, Deserialize)]
pub struct ContainerReferenceParam {
    /// The ID of the referenced container.
    pub container_id: String,
}

/// Status values reported for shell tool calls.
#[derive(Serialize, Deserialize)]
pub enum FunctionShellCallItemStatus {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "incomplete")]
    Incomplete,
}

/// Captured stdout and stderr for a portion of a shell tool call output.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutputContentParam {
    /// The exit or timeout outcome associated with this shell call.
    pub outcome: FunctionShellCallOutputOutcomeParam,
    /// Captured stderr output for the shell call.
    pub stderr: String,
    /// Captured stdout output for the shell call.
    pub stdout: String,
}

/// One of the create_file, delete_file, or update_file operations supplied to
/// the apply_patch tool.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum ApplyPatchOperationParam {
    #[serde(rename = "create_file")]
    CreateFile(ApplyPatchCreateFileOperationParam),
    #[serde(rename = "delete_file")]
    DeleteFile(ApplyPatchDeleteFileOperationParam),
    #[serde(rename = "update_file")]
    UpdateFile(ApplyPatchUpdateFileOperationParam),
}

/// Status values reported for apply_patch tool calls.
#[derive(Serialize, Deserialize)]
pub enum ApplyPatchCallStatusParam {
    #[serde(rename = "in_progress")]
    InProgress,
    #[serde(rename = "completed")]
    Completed,
}

/// Outcome values reported for apply_patch tool call outputs.
#[derive(Serialize, Deserialize)]
pub enum ApplyPatchCallOutputStatusParam {
    #[serde(rename = "completed")]
    Completed,
    #[serde(rename = "failed")]
    Failed,
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum FunctionAndCustomToolCallOutput {
    #[serde(rename = "input_text")]
    InputText(InputTextContent),
    #[serde(rename = "input_image")]
    InputImage(InputImageContent),
    #[serde(rename = "input_file")]
    InputFile(InputFileContent),
}

/// A click action.
#[derive(Serialize, Deserialize)]
pub struct ClickParam {
    /// Indicates which mouse button was pressed during the click. One of
    /// `left`, `right`, `wheel`, `back`, or `forward`.
    pub button: ClickButtonType,
    /// The keys being held while clicking.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keys: Option<Vec<String>>,
    /// The x-coordinate where the click occurred.
    pub x: i64,
    /// The y-coordinate where the click occurred.
    pub y: i64,
}

/// A double click action.
#[derive(Serialize, Deserialize)]
pub struct DoubleClickAction {
    /// The keys being held while double-clicking.
    pub keys: Option<Vec<String>>,
    /// The x-coordinate where the double click occurred.
    pub x: i64,
    /// The y-coordinate where the double click occurred.
    pub y: i64,
}

/// A drag action.
#[derive(Serialize, Deserialize)]
pub struct DragParam {
    /// The keys being held while dragging the mouse.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keys: Option<Vec<String>>,
    /// An array of coordinates representing the path of the drag action.
    /// Coordinates will appear as an array of objects, eg
    /// ```json
    /// [
    ///   { x: 100, y: 200 },
    ///   { x: 200, y: 300 }
    /// ]
    /// ```
    pub path: Vec<CoordParam>,
}

/// A collection of keypresses the model would like to perform.
#[derive(Serialize, Deserialize)]
pub struct KeyPressAction {
    /// The combination of keys the model is requesting to be pressed. This is
    /// an array of strings, each representing a key.
    pub keys: Vec<String>,
}

/// A mouse move action.
#[derive(Serialize, Deserialize)]
pub struct MoveParam {
    /// The keys being held while moving the mouse.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keys: Option<Vec<String>>,
    /// The x-coordinate to move to.
    pub x: i64,
    /// The y-coordinate to move to.
    pub y: i64,
}

/// A screenshot action.
#[derive(Serialize, Deserialize)]
pub struct ScreenshotParam {}

/// A scroll action.
#[derive(Serialize, Deserialize)]
pub struct ScrollParam {
    /// The keys being held while scrolling.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub keys: Option<Vec<String>>,
    /// The horizontal scroll distance.
    pub scroll_x: i64,
    /// The vertical scroll distance.
    pub scroll_y: i64,
    /// The x-coordinate where the scroll occurred.
    pub x: i64,
    /// The y-coordinate where the scroll occurred.
    pub y: i64,
}

/// An action to type in text.
#[derive(Serialize, Deserialize)]
pub struct TypeParam {
    /// The text to type.
    pub text: String,
}

/// A wait action.
#[derive(Serialize, Deserialize)]
pub struct WaitParam {}

/// Indicates that the shell call exceeded its configured time limit.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutputTimeoutOutcome {}

/// Indicates that the shell commands finished and returned an exit code.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutputExitOutcome {
    /// Exit code from the shell process.
    pub exit_code: i64,
}

/// An annotation that applies to a span of output text.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum Annotation {
    #[serde(rename = "file_citation")]
    FileCitation(FileCitationBody),
    #[serde(rename = "url_citation")]
    UrlCitation(UrlCitationBody),
    #[serde(rename = "container_file_citation")]
    ContainerFileCitation(ContainerFileCitationBody),
    #[serde(rename = "file_path")]
    FilePath(FilePath),
}

/// The log probability of a token.
#[derive(Serialize, Deserialize)]
pub struct LogProb {
    pub bytes: Vec<i64>,
    pub logprob: f64,
    pub token: String,
    pub top_logprobs: Vec<TopLogProb>,
}

#[derive(Serialize, Deserialize)]
pub enum ImageDetail {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "high")]
    High,
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "original")]
    Original,
}

/// The schema for the response format, described as a JSON Schema object.
/// Learn how to build JSON schemas [here](https://json-schema.org/).
pub type ResponseFormatJsonSchemaSchema = Option<Value>;

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum Filters {
    ComparisonFilter(ComparisonFilter),
    CompoundFilter(CompoundFilter),
}

#[derive(Serialize, Deserialize)]
pub struct RankingOptions {
    /// Weights that control how reciprocal rank fusion balances semantic
    /// embedding matches versus sparse keyword matches when hybrid search is
    /// enabled.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hybrid_search: Option<HybridSearchOptions>,
    /// The ranker to use for the file search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ranker: Option<RankerVersionType>,
    /// The score threshold for the file search, a number between 0 and 1.
    /// Numbers closer to 1 will attempt to return only the most relevant
    /// results, but may return fewer results.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub score_threshold: Option<f64>,
}

#[derive(Serialize, Deserialize)]
pub enum ComputerEnvironment {
    #[serde(rename = "windows")]
    Windows,
    #[serde(rename = "mac")]
    Mac,
    #[serde(rename = "linux")]
    Linux,
    #[serde(rename = "ubuntu")]
    Ubuntu,
    #[serde(rename = "browser")]
    Browser,
}

/// The approximate location of the user.
#[derive(Serialize, Deserialize)]
pub struct WebSearchApproximateLocationValue {
    /// Free text input for the city of the user, e.g. `San Francisco`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub city: Option<String>,
    /// The two-letter [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1) of the user, e.g. `US`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub country: Option<String>,
    /// Free text input for the region of the user, e.g. `California`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub region: Option<String>,
    /// The [IANA timezone](https://timeapi.io/documentation/iana-timezones) of the user, e.g. `America/Los_Angeles`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timezone: Option<String>,
    /// The type of location approximation. Always `approximate`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub r#type: Option<WebSearchApproximateLocationValueType>,
}

/// The type of location approximation. Always `approximate`.
#[derive(Serialize, Deserialize)]
pub enum WebSearchApproximateLocationValueType {
    #[serde(rename = "approximate")]
    Approximate,
}

pub type WebSearchApproximateLocation = Option<Option<WebSearchApproximateLocationValue>>;

/// A filter object to specify which tools are allowed.
#[derive(Serialize, Deserialize)]
pub struct MCPToolFilter {
    /// Indicates whether or not a tool modifies data or is read-only. If an
    /// MCP server is [annotated with `readOnlyHint`](https://modelcontextprotocol.io/specification/2025-06-18/schema#toolannotations-readonlyhint),
    /// it will match this filter.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub read_only: Option<bool>,
    /// List of allowed tool names.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_names: Option<Vec<String>>,
}

/// Configuration for a code interpreter container. Optionally specify the IDs
/// of the files to run the code on.
#[derive(Serialize, Deserialize)]
pub struct AutoCodeInterpreterToolParam {
    /// An optional list of uploaded files to make available to your code.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_ids: Option<Vec<String>>,
    /// The memory limit for the code interpreter container.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub memory_limit: Option<ContainerMemoryLimit>,
    /// Network access policy for the container.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub network_policy: Option<AutoCodeInterpreterToolParamNetworkPolicy>,
    /// Always `auto`.
    pub r#type: AutoCodeInterpreterToolParamType,
}

/// Network access policy for the container.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum AutoCodeInterpreterToolParamNetworkPolicy {
    #[serde(rename = "disabled")]
    Disabled(ContainerNetworkPolicyDisabledParam),
    #[serde(rename = "allowlist")]
    Allowlist(ContainerNetworkPolicyAllowlistParam),
}

/// Always `auto`.
#[derive(Serialize, Deserialize)]
pub enum AutoCodeInterpreterToolParamType {
    #[serde(rename = "auto")]
    Auto,
}

#[derive(Serialize, Deserialize)]
pub enum ImageGenActionEnum {
    #[serde(rename = "generate")]
    Generate,
    #[serde(rename = "edit")]
    Edit,
    #[serde(rename = "auto")]
    Auto,
}

/// Control how much effort the model will exert to match the style and
/// features, especially facial features, of input images. This parameter is
/// only supported for `gpt-image-1` and `gpt-image-1.5` and later models,
/// unsupported for `gpt-image-1-mini`. Supports `high` and `low`. Defaults to
/// `low`.
#[derive(Serialize, Deserialize)]
pub enum InputFidelity {
    #[serde(rename = "high")]
    High,
    #[serde(rename = "low")]
    Low,
}

#[derive(Serialize, Deserialize)]
pub struct ContainerAutoParam {
    /// An optional list of uploaded files to make available to your code.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_ids: Option<Vec<String>>,
    /// The memory limit for the container.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub memory_limit: Option<ContainerMemoryLimit>,
    /// Network access policy for the container.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub network_policy: Option<ContainerAutoParamNetworkPolicy>,
    /// An optional list of skills referenced by id or inline data.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub skills: Option<Vec<ContainerAutoParamSkillsItem>>,
}

/// Network access policy for the container.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum ContainerAutoParamNetworkPolicy {
    #[serde(rename = "disabled")]
    Disabled(ContainerNetworkPolicyDisabledParam),
    #[serde(rename = "allowlist")]
    Allowlist(ContainerNetworkPolicyAllowlistParam),
}

#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum ContainerAutoParamSkillsItem {
    #[serde(rename = "skill_reference")]
    SkillReference(SkillReferenceParam),
    #[serde(rename = "inline")]
    Inline(InlineSkillParam),
}

/// Unconstrained free-form text.
#[derive(Serialize, Deserialize)]
pub struct CustomTextFormatParam {}

/// A grammar defined by the user.
#[derive(Serialize, Deserialize)]
pub struct CustomGrammarFormatParam {
    /// The grammar definition.
    pub definition: String,
    /// The syntax of the grammar definition. One of `lark` or `regex`.
    pub syntax: GrammarSyntax1,
}

#[derive(Serialize, Deserialize)]
pub struct FunctionToolParam {
    /// Whether this function should be deferred and discovered via tool search.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub defer_loading: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    pub name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parameters: Option<EmptyModelParam>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub strict: Option<bool>,
}

#[derive(Serialize, Deserialize)]
pub enum SearchContentType {
    #[serde(rename = "text")]
    Text,
    #[serde(rename = "image")]
    Image,
}

#[derive(Serialize, Deserialize)]
pub enum SearchContextSize {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "medium")]
    Medium,
    #[serde(rename = "high")]
    High,
}

#[derive(Serialize, Deserialize)]
pub struct ApproximateLocation {
    /// Free text input for the city of the user, e.g. `San Francisco`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub city: Option<String>,
    /// The two-letter [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1) of the user, e.g. `US`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub country: Option<String>,
    /// Free text input for the region of the user, e.g. `California`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub region: Option<String>,
    /// The [IANA timezone](https://timeapi.io/documentation/iana-timezones) of the user, e.g. `America/Los_Angeles`.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timezone: Option<String>,
    /// The type of location approximation. Always `approximate`.
    pub r#type: ApproximateLocationType,
}

/// The type of location approximation. Always `approximate`.
#[derive(Serialize, Deserialize)]
pub enum ApproximateLocationType {
    #[serde(rename = "approximate")]
    Approximate,
}

#[derive(Serialize, Deserialize)]
pub enum DetailEnum {
    #[serde(rename = "low")]
    Low,
    #[serde(rename = "high")]
    High,
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "original")]
    Original,
}

#[derive(Serialize, Deserialize)]
pub struct LocalSkillParam {
    /// The description of the skill.
    pub description: String,
    /// The name of the skill.
    pub name: String,
    /// The path to the directory containing the skill.
    pub path: String,
}

/// The exit or timeout outcome associated with this shell call.
#[derive(Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum FunctionShellCallOutputOutcomeParam {
    #[serde(rename = "timeout")]
    Timeout(FunctionShellCallOutputTimeoutOutcomeParam),
    #[serde(rename = "exit")]
    Exit(FunctionShellCallOutputExitOutcomeParam),
}

/// Instruction for creating a new file via the apply_patch tool.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchCreateFileOperationParam {
    /// Unified diff content to apply when creating the file.
    pub diff: String,
    /// Path of the file to create relative to the workspace root.
    pub path: String,
}

/// Instruction for deleting an existing file via the apply_patch tool.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchDeleteFileOperationParam {
    /// Path of the file to delete relative to the workspace root.
    pub path: String,
}

/// Instruction for updating an existing file via the apply_patch tool.
#[derive(Serialize, Deserialize)]
pub struct ApplyPatchUpdateFileOperationParam {
    /// Unified diff content to apply to the existing file.
    pub diff: String,
    /// Path of the file to update relative to the workspace root.
    pub path: String,
}

#[derive(Serialize, Deserialize)]
pub enum ClickButtonType {
    #[serde(rename = "left")]
    Left,
    #[serde(rename = "right")]
    Right,
    #[serde(rename = "wheel")]
    Wheel,
    #[serde(rename = "back")]
    Back,
    #[serde(rename = "forward")]
    Forward,
}

/// An x/y coordinate pair, e.g. `{ x: 100, y: 200 }`.
#[derive(Serialize, Deserialize)]
pub struct CoordParam {
    /// The x-coordinate.
    pub x: i64,
    /// The y-coordinate.
    pub y: i64,
}

/// A citation to a file.
#[derive(Serialize, Deserialize)]
pub struct FileCitationBody {
    /// The ID of the file.
    pub file_id: String,
    /// The filename of the file cited.
    pub filename: String,
    /// The index of the file in the list of files.
    pub index: i64,
}

/// A citation for a web resource used to generate a model response.
#[derive(Serialize, Deserialize)]
pub struct UrlCitationBody {
    /// The index of the last character of the URL citation in the message.
    pub end_index: i64,
    /// The index of the first character of the URL citation in the message.
    pub start_index: i64,
    /// The title of the web resource.
    pub title: String,
    /// The URL of the web resource.
    pub url: String,
}

/// A citation for a container file used to generate a model response.
#[derive(Serialize, Deserialize)]
pub struct ContainerFileCitationBody {
    /// The ID of the container file.
    pub container_id: String,
    /// The index of the last character of the container file citation in the
    /// message.
    pub end_index: i64,
    /// The ID of the file.
    pub file_id: String,
    /// The filename of the container file cited.
    pub filename: String,
    /// The index of the first character of the container file citation in the
    /// message.
    pub start_index: i64,
}

/// A path to a file.
#[derive(Serialize, Deserialize)]
pub struct FilePath {
    /// The ID of the file.
    pub file_id: String,
    /// The index of the file in the list of files.
    pub index: i64,
}

/// The top log probability of a token.
#[derive(Serialize, Deserialize)]
pub struct TopLogProb {
    pub bytes: Vec<i64>,
    pub logprob: f64,
    pub token: String,
}

/// A filter used to compare a specified attribute key to a given value using a
/// defined comparison operation.
#[derive(Serialize, Deserialize)]
pub struct ComparisonFilter {
    /// The key to compare against the value.
    pub key: String,
    /// Specifies the comparison operator: `eq`, `ne`, `gt`, `gte`, `lt`, `lte`,
    /// `in`, `nin`.
    /// - `eq`: equals
    /// - `ne`: not equal
    /// - `gt`: greater than
    /// - `gte`: greater than or equal
    /// - `lt`: less than
    /// - `lte`: less than or equal
    /// - `in`: in
    /// - `nin`: not in
    pub r#type: ComparisonFilterType,
    /// The value to compare against the attribute key; supports string, number,
    /// or boolean types.
    pub value: ComparisonFilterValue,
}

/// Specifies the comparison operator: `eq`, `ne`, `gt`, `gte`, `lt`, `lte`,
/// `in`, `nin`.
/// - `eq`: equals
/// - `ne`: not equal
/// - `gt`: greater than
/// - `gte`: greater than or equal
/// - `lt`: less than
/// - `lte`: less than or equal
/// - `in`: in
/// - `nin`: not in
#[derive(Serialize, Deserialize)]
pub enum ComparisonFilterType {
    #[serde(rename = "eq")]
    Eq,
    #[serde(rename = "ne")]
    Ne,
    #[serde(rename = "gt")]
    Gt,
    #[serde(rename = "gte")]
    Gte,
    #[serde(rename = "lt")]
    Lt,
    #[serde(rename = "lte")]
    Lte,
    #[serde(rename = "in")]
    In,
    #[serde(rename = "nin")]
    Nin,
}

pub type ComparisonFilterValueString = Option<String>;

pub type ComparisonFilterValueNumber = Option<f64>;

pub type ComparisonFilterValueBoolean = Option<bool>;

pub type ComparisonFilterValueArrayItemString = Option<String>;

pub type ComparisonFilterValueArrayItemNumber = Option<f64>;

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum ComparisonFilterValueArrayItem {
    ComparisonFilterValueArrayItemString(ComparisonFilterValueArrayItemString),
    ComparisonFilterValueArrayItemNumber(ComparisonFilterValueArrayItemNumber),
}

pub type ComparisonFilterValueArray = Option<Vec<ComparisonFilterValueArrayItem>>;

/// The value to compare against the attribute key; supports string, number, or
/// boolean types.
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum ComparisonFilterValue {
    ComparisonFilterValueString(ComparisonFilterValueString),
    ComparisonFilterValueNumber(ComparisonFilterValueNumber),
    ComparisonFilterValueBoolean(ComparisonFilterValueBoolean),
    ComparisonFilterValueArray(ComparisonFilterValueArray),
}

/// Combine multiple filters using `and` or `or`.
#[derive(Serialize, Deserialize)]
pub struct CompoundFilter {
    /// Array of filters to combine. Items can be `ComparisonFilter` or
    /// `CompoundFilter`.
    pub filters: Vec<CompoundFilterFiltersItem>,
    /// Type of operation: `and` or `or`.
    pub r#type: CompoundFilterType,
}

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum CompoundFilterFiltersItem {
    ComparisonFilter(ComparisonFilter),
    CompoundFilter(CompoundFilter),
}

/// Type of operation: `and` or `or`.
#[derive(Serialize, Deserialize)]
pub enum CompoundFilterType {
    #[serde(rename = "and")]
    And,
    #[serde(rename = "or")]
    Or,
}

#[derive(Serialize, Deserialize)]
pub struct HybridSearchOptions {
    /// The weight of the embedding in the reciprocal ranking fusion.
    pub embedding_weight: f64,
    /// The weight of the text in the reciprocal ranking fusion.
    pub text_weight: f64,
}

#[derive(Serialize, Deserialize)]
pub enum RankerVersionType {
    #[serde(rename = "auto")]
    Auto,
    #[serde(rename = "default-2024-11-15")]
    Default20241115,
}

#[derive(Serialize, Deserialize)]
pub enum ContainerMemoryLimit {
    #[serde(rename = "1g")]
    N1G,
    #[serde(rename = "4g")]
    N4G,
    #[serde(rename = "16g")]
    N16G,
    #[serde(rename = "64g")]
    N64G,
}

#[derive(Serialize, Deserialize)]
pub struct ContainerNetworkPolicyDisabledParam {}

#[derive(Serialize, Deserialize)]
pub struct ContainerNetworkPolicyAllowlistParam {
    /// A list of allowed domains when type is `allowlist`.
    pub allowed_domains: Vec<String>,
    /// Optional domain-scoped secrets for allowlisted domains.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub domain_secrets: Option<Vec<ContainerNetworkPolicyDomainSecretParam>>,
}

#[derive(Serialize, Deserialize)]
pub struct SkillReferenceParam {
    /// The ID of the referenced skill.
    pub skill_id: String,
    /// Optional skill version. Use a positive integer or 'latest'. Omit for
    /// default.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

#[derive(Serialize, Deserialize)]
pub struct InlineSkillParam {
    /// The description of the skill.
    pub description: String,
    /// The name of the skill.
    pub name: String,
    /// Inline skill payload
    pub source: InlineSkillSourceParam,
}

#[derive(Serialize, Deserialize)]
pub enum GrammarSyntax1 {
    #[serde(rename = "lark")]
    Lark,
    #[serde(rename = "regex")]
    Regex,
}

/// Indicates that the shell call exceeded its configured time limit.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutputTimeoutOutcomeParam {}

/// Indicates that the shell commands finished and returned an exit code.
#[derive(Serialize, Deserialize)]
pub struct FunctionShellCallOutputExitOutcomeParam {
    /// The exit code returned by the shell process.
    pub exit_code: i64,
}

#[derive(Serialize, Deserialize)]
pub struct ContainerNetworkPolicyDomainSecretParam {
    /// The domain associated with the secret.
    pub domain: String,
    /// The name of the secret to inject for the domain.
    pub name: String,
    /// The secret value to inject for the domain.
    pub value: String,
}

/// Inline skill payload
#[derive(Serialize, Deserialize)]
pub struct InlineSkillSourceParam {
    /// Base64-encoded skill zip bundle.
    pub data: String,
    /// The media type of the inline skill payload. Must be `application/zip`.
    pub media_type: InlineSkillSourceParamMediaType,
    /// The type of the inline skill source. Must be `base64`.
    pub r#type: InlineSkillSourceParamType,
}

/// The media type of the inline skill payload. Must be `application/zip`.
#[derive(Serialize, Deserialize)]
pub enum InlineSkillSourceParamMediaType {
    #[serde(rename = "application/zip")]
    ApplicationZip,
}

/// The type of the inline skill source. Must be `base64`.
#[derive(Serialize, Deserialize)]
pub enum InlineSkillSourceParamType {
    #[serde(rename = "base64")]
    Base64,
}