crab_ai 0.1.9

OpenAI library for Rust
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
use std::collections::HashMap;
use std::error::Error;
use std::time::Duration;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use tokio::time::sleep;
use crate::resource::APIResource;
// use crate::core ::is_request_options;
use crate::core::{self, FinalRequestOptions, Headers, RequestOptions};
use crate::library::assistant_stream::{AssistantStream, RunCreateParamsBaseStream, RunSubmitToolOutputsParamsStream};
use crate::resources::beta::threads::runs::runs as runs_api;
use crate::resources::beta::assistants as assistants_api;
use crate::resources::beta::threads::messages as messages_api;
use crate::resources::beta::threads as threads_api;
use crate::resources::beta::threads::runs::steps as steps_api;
use crate::pagination::{CursorPage, CursorPageParams, CursorPageResponse, Page};
// use crate::streaming::{Stream};

#[derive(Debug, Clone)]
pub struct Runs {
    pub client: Option<APIResource>,
}

impl Runs {
    pub fn new() -> Self {
        Runs {
            client: None,
        }
    }

    /// Create a run.
    pub async fn create(
        &self,
        thread_id: &str,
        body: RunCreateParams,
        options: Option<RequestOptions<RunCreateParams>>,
    ) -> Result<Run, Box<dyn Error>> {
        let stream = body.stream.unwrap_or(false);

        let mut headers: Headers = HashMap::new();
        headers.insert("OpenAI-Beta".to_string(), Some("assistants=v2".to_string()));
        if let Some(opts) = &options {
            if let Some(hdrs) = &opts.headers {
                for (key, value) in hdrs {
                    headers.insert(key.to_owned(), value.to_owned());
                }
            }
        }

        self.client.as_ref().unwrap().borrow().post(
            &format!("/threads/{thread_id}/runs"),
            Some(RequestOptions {
                body: Some(body),
                headers: Some(headers),
                stream: Some(stream),
                ..options.unwrap_or_default()
            }),
        ).await
    }

    /// Retrieves a run.
    pub async fn retrieve(
        &self,
        thread_id: &str,
        run_id: &str,
        options: Option<RequestOptions>,
    ) -> Result<Run, Box<dyn Error>> {
        let mut headers: Headers = HashMap::new();
        headers.insert("OpenAI-Beta".to_string(), Some("assistants=v2".to_string()));
        if let Some(opts) = &options {
            if let Some(hdrs) = &opts.headers {
                for (key, value) in hdrs {
                    headers.insert(key.to_owned(), value.to_owned());
                }
            }
        }

        self.client.as_ref().unwrap().borrow().get(
            &format!("/threads/{thread_id}/runs/{run_id}"),
            Some(core::RequestOptions {
                headers: Some(headers),
                ..options.unwrap_or_default()
            }),
        ).await
    }

    /// Modifies a run.
    pub async fn update(
        &self,
        thread_id: &str,
        run_id: &str,
        body: RunUpdateParams,
        options: Option<RequestOptions<RunUpdateParams>>,
    ) -> Result<Run, Box<dyn Error>> {
        let mut headers: Headers = HashMap::new();
        headers.insert("OpenAI-Beta".to_string(), Some("assistants=v2".to_string()));
        if let Some(opts) = &options {
            if let Some(hdrs) = &opts.headers {
                for (key, value) in hdrs {
                    headers.insert(key.to_owned(), value.to_owned());
                }
            }
        }

        self.client.as_ref().unwrap().borrow().post(
            &format!("/threads/{thread_id}/runs/{run_id}"),
            Some(RequestOptions {
                body: Some(body),
                headers: Some(headers),
                ..options.unwrap_or_default()
            }),
        ).await
    }

    /// Returns a list of runs belonging to a thread.
    pub async fn list(
        &self,
        thread_id: &str,
        query: Option<RunListParams>,
        options: Option<RequestOptions<RunListParams>>,
    ) -> Result<CursorPage<RunListParams, Run>, Box<dyn Error>> {
        let mut headers: Headers = HashMap::new();
        headers.insert("OpenAI-Beta".to_string(), Some("assistants=v2".to_string()));
        if let Some(opts) = &options {
            if let Some(hdrs) = &opts.headers {
                for (key, value) in hdrs {
                    headers.insert(key.to_owned(), value.to_owned());
                }
            }
        }

        let page_constructor = |
            client: APIResource,
            body: CursorPageResponse<Run>,
            options: FinalRequestOptions<RunListParams>,
        | {
            CursorPage::new(client, body, options)
        };

        self.client.as_ref().unwrap().borrow().get_api_list(
            &format!("/threads/{thread_id}/runs"),
            page_constructor,
            Some(RequestOptions {
                query: query,
                headers: Some(headers),
                ..options.unwrap_or_default()
            }),
        ).await
    }

    /// Cancels a run that is `in_progress`.
    pub async fn cancel(
        &self,
        thread_id: &str,
        run_id: &str,
        options: Option<RequestOptions>,
    ) -> Result<Run, Box<dyn Error>> {
        let mut headers: Headers = HashMap::new();
        headers.insert("OpenAI-Beta".to_string(), Some("assistants=v2".to_string()));
        if let Some(opts) = &options {
            if let Some(hdrs) = &opts.headers {
                for (key, value) in hdrs {
                    headers.insert(key.to_owned(), value.to_owned());
                }
            }
        }

        self.client.as_ref().unwrap().borrow().post(
            &format!("/threads/{thread_id}/runs/{run_id}/cancel"),
            Some(RequestOptions {
                headers: Some(headers),
                ..options.unwrap_or_default()
            }),
        ).await
    }

    /// A helper to create a run an poll for a terminal state. More information on Run
    /// lifecycles can be found here:
    /// https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
    pub async fn create_and_poll(
        &self,
        thread_id: &str,
        body: RunCreateParams, // RunCreateParamsNonStreaming
        options: Option<RequestOptions<RunCreateParams>>, // & { pollIntervalMs: Option<number> }>,
    ) -> Result<Run, Box<dyn Error>> {
        let run = self.create(thread_id, body, options.clone()).await?;
        self.poll(thread_id, &run.id, options).await
    }

    // /// Create a Run stream
    // ///
    // /// @deprecated use `stream` instead
    //   createAndStream(
    //     thread_id: string,
    //     body: RunCreateParamsBaseStream,// #[serde(skip_serializing_if = "Option::is_none")]
    //     options: Option<Core.RequestOptions>,
    //   ): AssistantStream {
    //     return AssistantStream.createAssistantStream(thread_id, this._client.beta.threads.runs, body, options);
    //   }

    /// A helper to poll a run status until it reaches a terminal state. More
    /// information on Run lifecycles can be found here:
    /// https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
    pub async fn poll(
        &self,
        thread_id: &str,
        run_id: &str,
        options: Option<RequestOptions<RunCreateParams>>,
    ) -> Result<Run, Box<dyn Error>> {
        let mut headers: Headers = HashMap::new();
        headers.insert("OpenAI-Beta".to_string(), Some("assistants=v2".to_string()));
        headers.insert("X-Stainless-Poll-Helper".to_string(), Some("true".to_string()));
        if let Some(opts) = &options {
            if let Some(hdrs) = &opts.headers {
                for (key, value) in hdrs {
                    headers.insert(key.to_owned(), value.to_owned());
                }
            }
        }

        let mut options = options.unwrap_or_default();
        let poll_interval_ms = options.poll_interval_ms.clone();

        if let Some(ms) = &poll_interval_ms {
            headers.insert("X-Stainless-Custom-Poll-Interval".to_string(), Some(ms.clone().to_string()));
        }

        options.headers = Some(headers);
        let retrieve_options: RequestOptions<()> = options.convert(None);

        loop {
            let run = self.retrieve(thread_id, run_id, Some(retrieve_options.clone())).await?;
            // let run = result.data;
            // let response = result.response;

            match run.status {
                //If we are in any sort of intermediate state we poll
                RunStatus::Queued | RunStatus::InProgress | RunStatus::Cancelling => {
                    let sleep_interval = poll_interval_ms.unwrap_or(5000);

                    // if poll_interval_ms.is_none() {
                    //     let header_interval = response.headers.get("openai-poll - after - ms");
                    //     if header_interval.is_some() {
                    //         let header_interval_ms = parse_int(header_interval);
                    //         if (!isNaN(header_interval_ms)) {
                    //             sleep_interval = header_interval_ms;
                    //         }
                    //     }
                    // }
                    sleep(Duration::from_millis(sleep_interval as u64));
                    // break
                }
                //We return the run in any terminal state.
                RunStatus::RequiresAction | RunStatus::Incomplete |
                RunStatus::Cancelled | RunStatus::Completed |
                RunStatus::Failed | RunStatus::Expired => {
                    return Ok(run);
                }
            }
        }
    }

    // /// Create a Run stream
    //   stream(thread_id: string, body: RunCreateParamsBaseStream, options: Option<Core.RequestOptions): AssistantStream >,
    //     return AssistantStream.createAssistantStream(thread_id, this._client.beta.threads.runs, body, options);
    //   }

    // /// When a run has the `status: "requires_action"` and `required_action.type` is
    // /// `submit_tool_outputs`, this endpoint can be used to submit the outputs from the
    // /// tool calls once they're all completed. All outputs must be submitted in a single
    // /// request.
    //   submitToolOutputs(
    //     thread_id: string,
    //     run_id: string,
    //     body: RunSubmitToolOutputsParamsNonStreaming,// #[serde(skip_serializing_if = "Option::is_none")]
    //     options: Option<Core.RequestOptions>,
    //   ): APIPromise<Run>;
    //   submitToolOutputs(
    //     thread_id: string,
    //     run_id: string,
    //     body: RunSubmitToolOutputsParamsStreaming,// #[serde(skip_serializing_if = "Option::is_none")]
    //     options: Option<Core.RequestOptions>,
    //   ): APIPromise<Stream<assistants_api::AssistantStreamEvent>>;
    //   submitToolOutputs(
    //     thread_id: string,
    //     run_id: string,
    //     body: RunSubmitToolOutputsParamsBase,// #[serde(skip_serializing_if = "Option::is_none")]
    //     options: Option<Core.RequestOptions>,
    //   ): APIPromise<Stream<assistants_api::AssistantStreamEvent> | Run>;
    //   submitToolOutputs(
    //     thread_id: string,
    //     run_id: string,
    //     body: RunSubmitToolOutputsParams,// #[serde(skip_serializing_if = "Option::is_none")]
    //     options: Option<Core.RequestOptions>,
    //   ): APIPromise<Run> | APIPromise<Stream<assistants_api::AssistantStreamEvent>> {
    //     return this._client.post(`/threads/${thread_id}/runs/${run_id}/submit_tool_outputs`, {
    //       body,
    //       ...options,
    //       headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
    //       stream: body.stream ?? false,
    //     }) as APIPromise<Run> | APIPromise<Stream<assistants_api::AssistantStreamEvent>>;
    //   }

    // /// A helper to submit a tool output to a run and poll for a terminal run state.
    // /// More information on Run lifecycles can be found here:
    // /// https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
    //   async submitToolOutputsAndPoll(
    //     thread_id: string,
    //     run_id: string,
    //     body: RunSubmitToolOutputsParamsNonStreaming,// #[serde(skip_serializing_if = "Option::is_none")]
    //     options: Option<Core.RequestOptions & { pollIntervalMs: Option<number }>,
    //   ): Promise<Run> {
    //     const run = await this.submitToolOutputs(thread_id, run_id, body, options);
    //     return await this.poll(thread_id, run.id, options);
    //   }

    // /// Submit the tool outputs from a previous run and stream the run to a terminal
    // /// state. More information on Run lifecycles can be found here:
    // /// https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
    //   submitToolOutputsStream(
    //     thread_id: string,
    //     run_id: string,
    //     body: RunSubmitToolOutputsParamsStream,// #[serde(skip_serializing_if = "Option::is_none")]
    //     options: Option<Core.RequestOptions>,
    //   ): AssistantStream {
    //     return AssistantStream.createToolAssistantStream(
    //       thread_id,
    //       run_id,
    //       this._client.beta.threads.runs,
    //       body,
    //       options,
    //     );
    //   }
}

/// Tool call objects
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RequiredActionFunctionToolCall {
    /// The ID of the tool call. This ID must be referenced when you submit the tool
    /// outputs in using the
    /// [Submit tool outputs to run](https://platform.openai.com/docs/api-reference/runs/submitToolOutputs)
    /// endpoint.
    pub id: String,

    /// The function definition.
    pub function: required_action_function_tool_call::Function,

    /// The type of tool call the output is required for. For now, this is always
    /// `function`.
    #[serde(rename = "type")]
    pub kind: required_action_function_tool_call::Type,
}

pub mod required_action_function_tool_call {
    use super::*;
    /// The function definition.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct Function {
        /// The arguments that the model expects you to pass to the function.
        pub arguments: String,

        /// The name of the function.
        pub name: String,
    }

    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    #[serde(rename_all = "snake_case")]
    pub enum Type {
        #[default]
        Function,
    }
}

/// Represents an execution run on a
/// [thread](https://platform.openai.com/docs/api-reference/threads).
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct Run {
    /// The identifier, which can be referenced in API endpoints.
    pub id: String,

    /// The ID of the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) used for
    /// execution of this run.
    pub assistant_id: String,

    /// The Unix timestamp (in seconds) for when the run was cancelled.
    pub cancelled_at: Option<u64>,

    /// The Unix timestamp (in seconds) for when the run was completed.
    pub completed_at: Option<u64>,

    /// The Unix timestamp (in seconds) for when the run was created.
    pub created_at: u64,

    /// The Unix timestamp (in seconds) for when the run will expire.
    pub expires_at: Option<u64>,

    /// The Unix timestamp (in seconds) for when the run failed.
    pub failed_at: Option<u64>,

    /// Details on why the run is incomplete. Will be `null` if the run is not
    /// incomplete.
    pub incomplete_details: Option<run::IncompleteDetails>,

    /// The instructions that the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) used for
    /// this run.
    pub instructions: String,

    /// The last error associated with this run. Will be `null` if there are no errors.
    pub last_error: Option<run::LastError>,

    /// The maximum number of completion tokens specified to have been used over the
    /// course of the run.
    pub max_completion_tokens: Option<u32>,

    /// The maximum number of prompt tokens specified to have been used over the course
    /// of the run.
    pub max_prompt_tokens: Option<u32>,

    /// Set of 16 key-value pairs that can be attached to an object. This can be useful
    /// for storing additional information about the object in a structured format. Keys
    /// can be a maximum of 64 characters long and values can be a maxium of 512
    /// characters long.
    pub metadata: Option<Value>,

    /// The model that the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) used for
    /// this run.
    pub model: String,

    /// The object type, which is always `thread.run`.
    pub object: run::Object,

    /// Whether to enable
    /// [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling)
    /// during tool use.
    pub parallel_tool_calls: bool,

    /// Details on the action required to continue the run. Will be `null` if no action
    /// is required.
    pub required_action: Option<run::RequiredAction>,

    /// Specifies the format that the model must output. Compatible with
    /// [GPT-4o](https://platform.openai.com/docs/models/gpt-4o),
    /// [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4),
    /// and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`.
    ///
    /// Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the
    /// message the model generates is valid JSON.
    ///
    /// **Important:** when using JSON mode, you **must** also instruct the model to
    /// produce JSON yourself via a system or user message. Without this, the model may
    /// generate an unending stream of whitespace until the generation reaches the token
    /// limit, resulting in a long-running and seemingly "stuck" request. Also note that
    /// the message content may be partially cut off if `finish_reason="length"`, which
    /// indicates the generation exceeded `max_tokens` or the conversation exceeded the
    /// max context length.
    pub response_format: Option<threads_api::AssistantResponseFormatOption>,

    /// The Unix timestamp (in seconds) for when the run was started.
    pub started_at: Option<u64>,

    /// The status of the run, which can be either `queued`, `in_progress`,
    /// `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`,
    /// `incomplete`, or `expired`.
    pub status: RunStatus,

    /// The ID of the [thread](https://platform.openai.com/docs/api-reference/threads)
    /// that was executed on as a part of this run.
    pub thread_id: String,

    /// Controls which (if any) tool is called by the model. `none` means the model will
    /// not call any tools and instead generates a message. `auto` is the default value
    /// and 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 before responding
    /// to the user. Specifying a particular tool like `{"type": "file_search"}` or
    /// `{"type": "function", "function": {"name": "my_function"}}` forces the model to
    /// call that tool.
    pub tool_choice: Option<threads_api::AssistantToolChoiceOption>,

    /// The list of tools that the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) used for
    /// this run.
    pub tools: Vec<assistants_api::AssistantTool>,

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    pub truncation_strategy: Option<run::TruncationStrategy>,

    /// Usage statistics related to the run. This value will be `null` if the run is not
    /// in a terminal state (i.e. `in_progress`, `queued`, etc.).
    pub usage: Option<run::Usage>,

    /// The sampling temperature used for this run. If not set, defaults to 1.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub temperature: Option<f32>,

    /// The nucleus sampling value used for this run. If not set, defaults to 1.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub top_p: Option<f32>,
}

pub mod run {
    use super::*;

    /// Details on why the run is incomplete. Will be `null` if the run is not
    /// incomplete.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct IncompleteDetails {
        /// The reason why the run is incomplete. This will point to which specific token
        /// limit was reached over the course of the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub reason: Option<incomplete_details::Reason>,
    }

    pub mod incomplete_details {
        use super::*;

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(untagged, rename_all = "snake_case")]
        pub enum Reason {
            #[default]
            MaxCompletionTokens,
            MaxPromptTokens,
        }
    }

    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub enum Object {
        #[default]
        #[serde(rename = "thread.run")]
        ThreadRun,
    }

    /// The last error associated with this run. Will be `null` if there are no errors.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct LastError {
        /// One of `server_error`, `rate_limit_exceeded`, or `invalid_prompt`.
        pub code: last_error::Code,

        /// A human-readable description of the error.
        pub message: String,
    }

    pub mod last_error {
        use super::*;

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(untagged, rename_all = "snake_case")]
        pub enum Code {
            #[default]
            ServerError,
            RateLimitExceeded,
            InvalidPrompt,
        }
    }

    /// Details on the action required to continue the run. Will be `null` if no action
    /// is required.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct RequiredAction {
        /// Details on the tool outputs needed for this run to continue.
        pub submit_tool_outputs: required_action::SubmitToolOutputs,

        /// For now, this is always `submit_tool_outputs`.
        #[serde(rename = "type")]
        pub kind: required_action::Type,
    }

    pub mod required_action {
        use super::*;
        /// Details on the tool outputs needed for this run to continue.
        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub struct SubmitToolOutputs {
            /// A list of the relevant tool calls.
            pub tool_calls: Vec<runs_api::RequiredActionFunctionToolCall>,
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(rename_all = "snake_case")]
        pub enum Type {
            #[default]
            SubmitToolOutputs,
        }
    }

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct TruncationStrategy {
        /// The truncation strategy to use for the thread. The default is `auto`. If set to
        /// `last_messages`, the thread will be truncated to the n most recent messages in
        /// the thread. When set to `auto`, messages in the middle of the thread will be
        /// dropped to fit the context length of the model, `max_prompt_tokens`.
        #[serde(rename = "type")]
        pub kind: truncation_strategy::Type,

        /// The number of most recent messages from the thread when constructing the context
        /// for the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub last_messages: Option<u32>,
    }

    pub mod truncation_strategy {
        use super::*;

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(rename_all = "snake_case")]
        pub enum Type {
            #[default]
            Auto,
            LastMessages,
        }
    }

    /// Usage statistics related to the run. This value will be `null` if the run is not
    /// in a terminal state (i.e. `in_progress`, `queued`, etc.).
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct Usage {
        /// Number of completion tokens used over the course of the run.
        pub completion_tokens: u32,

        /// Number of prompt tokens used over the course of the run.
        pub prompt_tokens: u32,

        /// Total number of tokens used (prompt + completion).
        pub total_tokens: u32,
    }
}

/// The status of the run, which can be either `queued`, `in_progress`,
/// `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`,
/// `incomplete`, or `expired`.
#[derive(Default, Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum RunStatus {
    #[default]
    Queued,
    InProgress,
    RequiresAction,
    Cancelling,
    Cancelled,
    Failed,
    Completed,
    Incomplete,
    Expired,
}

// export type RunCreateParams = RunCreateParamsNonStreaming | RunCreateParamsStreaming;

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunCreateParams {
    /// The ID of the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
    /// execute this run.
    pub assistant_id: String,

    /// Appends additional instructions at the end of the instructions for the run. This
    /// is useful for modifying the behavior on a per-run basis without overriding other
    /// instructions.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_instructions: Option<String>,

    /// Adds additional messages to the thread before creating the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_messages: Option<Vec<run_create_params::AdditionalMessage>>,

    /// Overrides the
    /// [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant)
    /// of the assistant. This is useful for modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub instructions: Option<String>,

    /// The maximum number of completion tokens that may be used over the course of the
    /// run. The run will make a best effort to use only the number of completion tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// completion tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_completion_tokens: Option<u32>,

    /// The maximum number of prompt tokens that may be used over the course of the run.
    /// The run will make a best effort to use only the number of prompt tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// prompt tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_prompt_tokens: Option<u32>,

    /// Set of 16 key-value pairs that can be attached to an object. This can be useful
    /// for storing additional information about the object in a structured format. Keys
    /// can be a maximum of 64 characters long and values can be a maxium of 512
    /// characters long.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<Value>,

    /// The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to
    /// be used to execute this run. If a value is provided here, it will override the
    /// model associated with the assistant. If not, the model associated with the
    /// assistant will be used.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub model: Option<String>,
    // | 'gpt-4o,
    // | 'gpt-4o-2024-05-13,
    // | 'gpt-4-turbo,
    // | 'gpt-4-turbo-2024-04-09,
    // | 'gpt-4-0125-preview,
    // | 'gpt-4-turbo-preview,
    // | 'gpt-4-1106-preview,
    // | 'gpt-4-vision-preview,
    // | 'gpt-4,
    // | 'gpt-4-0314,
    // | 'gpt-4-0613,
    // | 'gpt-4-32k,
    // | 'gpt-4-32k-0314,
    // | 'gpt-4-32k-0613,
    // | 'gpt-3.5-turbo,
    // | 'gpt-3.5-turbo-16k,
    // | 'gpt-3.5-turbo-0613,
    // | 'gpt-3.5-turbo-1106,
    // | 'gpt-3.5-turbo-0125,
    // | 'gpt-3.5-turbo-16k-0613,

    /// Whether to enable
    /// [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling)
    /// during tool use.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parallel_tool_calls: Option<bool>,

    /// Specifies the format that the model must output. Compatible with
    /// [GPT-4o](https://platform.openai.com/docs/models/gpt-4o),
    /// [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4),
    /// and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`.
    ///
    /// Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the
    /// message the model generates is valid JSON.
    ///
    /// **Important:** when using JSON mode, you **must** also instruct the model to
    /// produce JSON yourself via a system or user message. Without this, the model may
    /// generate an unending stream of whitespace until the generation reaches the token
    /// limit, resulting in a long-running and seemingly "stuck" request. Also note that
    /// the message content may be partially cut off if `finish_reason="length"`, which
    /// indicates the generation exceeded `max_tokens` or the conversation exceeded the
    /// max context length.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub response_format: Option<threads_api::AssistantResponseFormatOption>,

    /// If `true`, returns a stream of events that happen during the Run as server-sent
    /// events, terminating when the Run enters a terminal state with a `data: [DONE]`
    /// message.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub stream: Option<bool>,

    /// 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.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub temperature: Option<f32>,

    /// Controls which (if any) tool is called by the model. `none` means the model will
    /// not call any tools and instead generates a message. `auto` is the default value
    /// and 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 before responding
    /// to the user. Specifying a particular tool like `{"type": "file_search"}` or
    /// `{"type": "function", "function": {"name": "my_function"}}` forces the model to
    /// call that tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_choice: Option<threads_api::AssistantToolChoiceOption>,

    /// Override the tools the assistant can use for this run. This is useful for
    /// modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tools: Option<Vec<assistants_api::AssistantTool>>,

    /// 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<f32>,

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub truncation_strategy: Option<run_create_params::TruncationStrategy>,
}

pub mod run_create_params {
    use super::*;

    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct AdditionalMessage {
        /// The text contents of the message.
        pub content: additional_message::Content,

        /// The role of the entity that is creating the message. Allowed values include:
        ///
        /// - `user`: Indicates the message is sent by an actual user and should be used in
        ///   most cases to represent user-generated messages.
        /// - `assistant`: Indicates the message is generated by the assistant. Use this
        ///   value to insert messages from the assistant into the conversation.
        pub role: additional_message::Role,

        /// A list of files attached to the message, and the tools they should be added to.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub attachments: Option<Vec<additional_message::Attachment>>,

        /// Set of 16 key-value pairs that can be attached to an object. This can be useful
        /// for storing additional information about the object in a structured format. Keys
        /// can be a maximum of 64 characters long and values can be a maxium of 512
        /// characters long.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub metadata: Option<Value>,
    }

    pub mod additional_message {
        use super::*;

        #[derive(Debug, Clone, Serialize, Deserialize)]
        #[serde(untagged)]
        pub enum Content {
            Text(String),
            Multiple(Vec<messages_api::MessageContent>), // String | Vec<messages_api::MessageContentPartParam>
        }

        impl Default for Content {
            fn default() -> Self {
                Content::Text(String::default())
            }
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub struct Attachment {
            /// The ID of the file to attach to the message.
            #[serde(skip_serializing_if = "Option::is_none")]
            pub file_id: Option<String>,

            /// The tools to add this file to.
            #[serde(skip_serializing_if = "Option::is_none")]
            pub tools: Option<Vec<attachment::Tool>>,
        }

        pub mod attachment {
            use super::*;

            #[derive(Debug, Clone, Serialize, Deserialize)]
            #[serde(untagged)]
            pub enum Tool {
                CodeInterpreterTool(assistants_api::CodeInterpreterTool),
                FileSearch(FileSearch),
            }

            impl Default for Tool {
                fn default() -> Self {
                    Tool::CodeInterpreterTool(assistants_api::CodeInterpreterTool::default())
                }
            }

            #[derive(Default, Debug, Clone, Serialize, Deserialize)]
            pub struct FileSearch {
                /// The type of tool being defined: `file_search`
                #[serde(rename = "type")]
                pub kind: file_search::Type,
            }

            pub mod file_search {
                use super::*;

                #[derive(Default, Debug, Clone, Serialize, Deserialize)]
                #[serde(rename_all = "snake_case")]
                pub enum Type {
                    #[default]
                    FileSearch,
                }
            }
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub enum Role {
            #[default]
            User,
            Assistant,
        }
    }

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct TruncationStrategy {
        /// The truncation strategy to use for the thread. The default is `auto`. If set to
        /// `last_messages`, the thread will be truncated to the n most recent messages in
        /// the thread. When set to `auto`, messages in the middle of the thread will be
        /// dropped to fit the context length of the model, `max_prompt_tokens`.
        #[serde(rename = "type")]
        pub kind: truncation_strategy::Type,

        /// The number of most recent messages from the thread when constructing the context
        /// for the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        last_messages: Option<u32>,
    }

    pub mod truncation_strategy {
        use super::*;

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(rename_all = "snake_case")]
        pub enum Type {
            #[default]
            Auto,
            LastMessages,
        }
    }
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunUpdateParams {
    /// Set of 16 key-value pairs that can be attached to an object. This can be useful
    /// for storing additional information about the object in a structured format. Keys
    /// can be a maximum of 64 characters long and values can be a maxium of 512
    /// characters long.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<Value>,
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunListParams { //extends CursorPageParams
    /// A cursor for use in pagination. `before` is an object ID that defines your place
    /// in the list. For instance, if you make a list request and receive 100 objects,
    /// ending with obj_foo, your subsequent call can include before=obj_foo in order to
    /// fetch the previous page of the list.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub before: Option<String>,

    /// Sort order by the `created_at` timestamp of the objects. `asc` for ascending
    /// order and `desc` for descending order.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub order: Option<run_list_params::Order>,
}

pub mod run_list_params {
    use super::*;

    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    #[serde(untagged, rename_all = "snake_case")]
    pub enum Order {
        #[default]
        Asc,
        Desc,
    }
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunCreateAndPollParams {
    /// The ID of the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
    /// execute this run.
    pub assistant_id: String,

    /// Appends additional instructions at the end of the instructions for the run. This
    /// is useful for modifying the behavior on a per-run basis without overriding other
    /// instructions.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_instructions: Option<String>,

    /// Adds additional messages to the thread before creating the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_messages: Option<Vec<run_create_and_poll_params::AdditionalMessage>>,

    /// Overrides the
    /// [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant)
    /// of the assistant. This is useful for modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub instructions: Option<String>,

    /// The maximum number of completion tokens that may be used over the course of the
    /// run. The run will make a best effort to use only the number of completion tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// completion tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_completion_tokens: Option<u32>,

    /// The maximum number of prompt tokens that may be used over the course of the run.
    /// The run will make a best effort to use only the number of prompt tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// prompt tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_prompt_tokens: Option<u32>,

    /// Set of 16 key-value pairs that can be attached to an object. This can be useful
    /// for storing additional information about the object in a structured format. Keys
    /// can be a maximum of 64 characters long and values can be a maxium of 512
    /// characters long.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<Value>,

    /// The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to
    /// be used to execute this run. If a value is provided here, it will override the
    /// model associated with the assistant. If not, the model associated with the
    /// assistant will be used.
    pub model: Option<String>,
    // | (string & {})
    // | 'gpt-4o'
    // | 'gpt-4o-2024-05-13'
    // | 'gpt-4-turbo'
    // | 'gpt-4-turbo-2024-04-09'
    // | 'gpt-4-0125-preview'
    // | 'gpt-4-turbo-preview'
    // | 'gpt-4-1106-preview'
    // | 'gpt-4-vision-preview'
    // | 'gpt-4'
    // | 'gpt-4-0314'
    // | 'gpt-4-0613'
    // | 'gpt-4-32k'
    // | 'gpt-4-32k-0314'
    // | 'gpt-4-32k-0613'
    // | 'gpt-3.5-turbo'
    // | 'gpt-3.5-turbo-16k'
    // | 'gpt-3.5-turbo-0613'
    // | 'gpt-3.5-turbo-1106'
    // | 'gpt-3.5-turbo-0125'
    // | 'gpt-3.5-turbo-16k-0613'

    /// Specifies the format that the model must output. Compatible with
    /// [GPT-4o](https://platform.openai.com/docs/models/gpt-4o),
    /// [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4),
    /// and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`.
    ///
    /// Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the
    /// message the model generates is valid JSON.
    ///
    /// **Important:** when using JSON mode, you **must** also instruct the model to
    /// produce JSON yourself via a system or user message. Without this, the model may
    /// generate an unending stream of whitespace until the generation reaches the token
    /// limit, resulting in a long-running and seemingly "stuck" request. Also note that
    /// the message content may be partially cut off if `finish_reason="length"`, which
    /// indicates the generation exceeded `max_tokens` or the conversation exceeded the
    /// max context length.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub response_format: Option<threads_api::AssistantResponseFormatOption>,

    /// 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.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub temperature: Option<f32>,

    /// Controls which (if any) tool is called by the model. `none` means the model will
    /// not call any tools and instead generates a message. `auto` is the default value
    /// and 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 before responding
    /// to the user. Specifying a particular tool like `{"type": "file_search"}` or
    /// `{"type": "function", "function": {"name": "my_function"}}` forces the model to
    /// call that tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_choice: Option<threads_api::AssistantToolChoiceOption>,

    /// Override the tools the assistant can use for this run. This is useful for
    /// modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tools: Option<Vec<assistants_api::AssistantTool>>,

    /// 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<f32>,

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub truncation_strategy: Option<run_create_and_poll_params::TruncationStrategy>,
}

pub mod run_create_and_poll_params {
    use super::*;
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct AdditionalMessage {
        /// The text contents of the message.
        pub content: additional_message::Content,

        /// The role of the entity that is creating the message. Allowed values include:
        ///
        /// - `user`: Indicates the message is sent by an actual user and should be used in
        ///   most cases to represent user-generated messages.
        /// - `assistant`: Indicates the message is generated by the assistant. Use this
        ///   value to insert messages from the assistant into the conversation.
        pub role: additional_message::Role,

        /// A list of files attached to the message, and the tools they should be added to.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub attachments: Option<Vec<additional_message::Attachment>>,

        /// Set of 16 key-value pairs that can be attached to an object. This can be useful
        /// for storing additional information about the object in a structured format. Keys
        /// can be a maximum of 64 characters long and values can be a maxium of 512
        /// characters long.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub metadata: Option<Value>,
    }

    pub mod additional_message {
        use super::*;

        #[derive(Debug, Clone, Serialize, Deserialize)]
        #[serde(untagged)]
        pub enum Content {
            Text(String),
            Multiple(Vec<messages_api::MessageContent>), // String | Vec<messages_api::MessageContent>
        }

        impl Default for Content {
            fn default() -> Self {
                Content::Text(String::default())
            }
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub struct Attachment {
            /// The ID of the file to attach to the message.
            #[serde(skip_serializing_if = "Option::is_none")]
            pub file_id: Option<String>,
            /// The tools to add this file to.
            #[serde(skip_serializing_if = "Option::is_none")]
            pub tools: Option<Vec<attachment::Tool>>,
        }

        pub mod attachment {
            use super::*;

            #[derive(Debug, Clone, Serialize, Deserialize)]
            #[serde(untagged)]
            pub enum Tool {
                CodeInterpreterTool(assistants_api::CodeInterpreterTool),
                FileSearch(assistants_api::FileSearchTool),
            }

            impl Default for Tool {
                fn default() -> Self {
                    Tool::CodeInterpreterTool(assistants_api::CodeInterpreterTool::default())
                }
            }
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(untagged, rename_all = "snake_case")]
        pub enum Role {
            #[default]
            User,
            Assistant,
        }
    }

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct TruncationStrategy {
        /// The truncation strategy to use for the thread. The default is `auto`. If set to
        /// `last_messages`, the thread will be truncated to the n most recent messages in
        /// the thread. When set to `auto`, messages in the middle of the thread will be
        /// dropped to fit the context length of the model, `max_prompt_tokens`.
        #[serde(rename = "type")]
        pub kind: truncation_strategy::Type,

        /// The number of most recent messages from the thread when constructing the context
        /// for the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        last_messages: Option<u32>,
    }

    pub mod truncation_strategy {
        use super::*;

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(rename_all = "snake_case")]
        pub enum Type {
            #[default]
            Auto,
            LastMessages,
        }
    }
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunCreateAndStreamParams {
    /// The ID of the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
    /// execute this run.
    pub assistant_id: String,

    /// Appends additional instructions at the end of the instructions for the run. This
    /// is useful for modifying the behavior on a per-run basis without overriding other
    /// instructions.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_instructions: Option<String>,

    /// Adds additional messages to the thread before creating the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_messages: Option<Vec<run_create_and_stream_params::AdditionalMessage>>,

    /// Overrides the
    /// [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant)
    /// of the assistant. This is useful for modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    instructions: Option<String>,

    /// The maximum number of completion tokens that may be used over the course of the
    /// run. The run will make a best effort to use only the number of completion tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// completion tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    max_completion_tokens: Option<u32>,

    /// The maximum number of prompt tokens that may be used over the course of the run.
    /// The run will make a best effort to use only the number of prompt tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// prompt tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    max_prompt_tokens: Option<u32>,

    /// Set of 16 key-value pairs that can be attached to an object. This can be useful
    /// for storing additional information about the object in a structured format. Keys
    /// can be a maximum of 64 characters long and values can be a maxium of 512
    /// characters long.
    #[serde(skip_serializing_if = "Option::is_none")]
    metadata: Option<Value>,

    /// The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to
    /// be used to execute this run. If a value is provided here, it will override the
    /// model associated with the assistant. If not, the model associated with the
    /// assistant will be used.
    pub model: Option<String>,
    //     | (string & {})
    //     | 'gpt-4o'
    //     | 'gpt-4o-2024-05-13'
    //     | 'gpt-4-turbo'
    //     | 'gpt-4-turbo-2024-04-09'
    //     | 'gpt-4-0125-preview'
    //     | 'gpt-4-turbo-preview'
    //     | 'gpt-4-1106-preview'
    //     | 'gpt-4-vision-preview'
    //     | 'gpt-4'
    //     | 'gpt-4-0314'
    //     | 'gpt-4-0613'
    //     | 'gpt-4-32k'
    //     | 'gpt-4-32k-0314'
    //     | 'gpt-4-32k-0613'
    //     | 'gpt-3.5-turbo'
    //     | 'gpt-3.5-turbo-16k'
    //     | 'gpt-3.5-turbo-0613'
    //     | 'gpt-3.5-turbo-1106'
    //     | 'gpt-3.5-turbo-0125'
    //     | 'gpt-3.5-turbo-16k-0613'
    //     | null;

    /// Specifies the format that the model must output. Compatible with
    /// [GPT-4o](https://platform.openai.com/docs/models/gpt-4o),
    /// [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4),
    /// and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`.
    ///
    /// Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the
    /// message the model generates is valid JSON.
    ///
    /// **Important:** when using JSON mode, you **must** also instruct the model to
    /// produce JSON yourself via a system or user message. Without this, the model may
    /// generate an unending stream of whitespace until the generation reaches the token
    /// limit, resulting in a long-running and seemingly "stuck" request. Also note that
    /// the message content may be partially cut off if `finish_reason="length"`, which
    /// indicates the generation exceeded `max_tokens` or the conversation exceeded the
    /// max context length.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub response_format: Option<threads_api::AssistantResponseFormatOption>,

    /// 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.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub temperature: Option<f32>,

    /// Controls which (if any) tool is called by the model. `none` means the model will
    /// not call any tools and instead generates a message. `auto` is the default value
    /// and 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 before responding
    /// to the user. Specifying a particular tool like `{"type": "file_search"}` or
    /// `{"type": "function", "function": {"name": "my_function"}}` forces the model to
    /// call that tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_choice: Option<threads_api::AssistantToolChoiceOption>,

    /// Override the tools the assistant can use for this run. This is useful for
    /// modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tools: Option<Vec<assistants_api::AssistantTool>>,

    /// 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<f32>,

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub truncation_strategy: Option<run_create_and_stream_params::TruncationStrategy>,
}

pub mod run_create_and_stream_params {
    use super::*;
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct AdditionalMessage {
        /// The text contents of the message.
        pub content: additional_message::Content,

        /// The role of the entity that is creating the message. Allowed values include:
        ///
        /// - `user`: Indicates the message is sent by an actual user and should be used in
        ///   most cases to represent user-generated messages.
        /// - `assistant`: Indicates the message is generated by the assistant. Use this
        ///   value to insert messages from the assistant into the conversation.
        pub role: additional_message::Role,

        /// A list of files attached to the message, and the tools they should be added to.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub attachments: Option<Vec<additional_message::Attachment>>,

        /// Set of 16 key-value pairs that can be attached to an object. This can be useful
        /// for storing additional information about the object in a structured format. Keys
        /// can be a maximum of 64 characters long and values can be a maxium of 512
        /// characters long.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub metadata: Option<Value>,
    }

    pub mod additional_message {
        use super::*;

        #[derive(Debug, Clone, Serialize, Deserialize)]
        #[serde(untagged)]
        pub enum Content {
            Text(String),
            Multiple(Vec<messages_api::MessageContent>), // String | Vec<messages_api::MessageContent>
        }

        impl Default for Content {
            fn default() -> Self {
                Content::Text(String::default())
            }
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub enum Role {
            #[default]
            User,
            Assistant,
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub struct Attachment {
            /// The ID of the file to attach to the message.
            #[serde(skip_serializing_if = "Option::is_none")]
            pub file_id: Option<String>,

            /// The tools to add this file to.
            #[serde(skip_serializing_if = "Option::is_none")]
            pub tools: Option<Vec<attachment::Tool>>,
        }

        pub mod attachment {
            use super::*;

            #[derive(Debug, Clone, Serialize, Deserialize)]
            #[serde(untagged)]
            pub enum Tool {
                CodeInterpreterTool(assistants_api::CodeInterpreterTool),
                FileSearch(assistants_api::FileSearchTool),
            }

            impl Default for Tool {
                fn default() -> Self {
                    Tool::CodeInterpreterTool(assistants_api::CodeInterpreterTool::default())
                }
            }
        }
    }

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct TruncationStrategy {
        /// The truncation strategy to use for the thread. The default is `auto`. If set to
        /// `last_messages`, the thread will be truncated to the n most recent messages in
        /// the thread. When set to `auto`, messages in the middle of the thread will be
        /// dropped to fit the context length of the model, `max_prompt_tokens`.
        #[serde(rename = "type")]
        pub kind: truncation_strategy::Type,

        /// The number of most recent messages from the thread when constructing the context
        /// for the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub last_messages: Option<u32>,
    }

    pub mod truncation_strategy {
        use super::*;

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(rename_all = "snake_case")]
        pub enum Type {
            #[default]
            Auto,
            LastMessages,
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub enum Role {
            #[default]
            User,
            Assistant,
        }
    }
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunStreamParams {
    /// The ID of the
    /// [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
    /// execute this run.
    pub assistant_id: String,

    /// Appends additional instructions at the end of the instructions for the run. This
    /// is useful for modifying the behavior on a per-run basis without overriding other
    /// instructions.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_instructions: Option<String>,

    /// Adds additional messages to the thread before creating the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_messages: Option<Vec<run_stream_params::AdditionalMessage>>,

    /// Overrides the
    /// [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant)
    /// of the assistant. This is useful for modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub instructions: Option<String>,

    /// The maximum number of completion tokens that may be used over the course of the
    /// run. The run will make a best effort to use only the number of completion tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// completion tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_completion_tokens: Option<u32>,

    /// The maximum number of prompt tokens that may be used over the course of the run.
    /// The run will make a best effort to use only the number of prompt tokens
    /// specified, across multiple turns of the run. If the run exceeds the number of
    /// prompt tokens specified, the run will end with status `incomplete`. See
    /// `incomplete_details` for more info.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_prompt_tokens: Option<u32>,

    /// Set of 16 key-value pairs that can be attached to an object. This can be useful
    /// for storing additional information about the object in a structured format. Keys
    /// can be a maximum of 64 characters long and values can be a maxium of 512
    /// characters long.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata: Option<Value>,

    /// The ID of the [Model](https://platform.openai.com/docs/api-reference/models) to
    /// be used to execute this run. If a value is provided here, it will override the
    /// model associated with the assistant. If not, the model associated with the
    /// assistant will be used.
    pub model: Option<String>,
    //     | (string & {})
    //     | 'gpt-4o'
    //     | 'gpt-4o-2024-05-13'
    //     | 'gpt-4-turbo'
    //     | 'gpt-4-turbo-2024-04-09'
    //     | 'gpt-4-0125-preview'
    //     | 'gpt-4-turbo-preview'
    //     | 'gpt-4-1106-preview'
    //     | 'gpt-4-vision-preview'
    //     | 'gpt-4'
    //     | 'gpt-4-0314'
    //     | 'gpt-4-0613'
    //     | 'gpt-4-32k'
    //     | 'gpt-4-32k-0314'
    //     | 'gpt-4-32k-0613'
    //     | 'gpt-3.5-turbo'
    //     | 'gpt-3.5-turbo-16k'
    //     | 'gpt-3.5-turbo-0613'
    //     | 'gpt-3.5-turbo-1106'
    //     | 'gpt-3.5-turbo-0125'
    //     | 'gpt-3.5-turbo-16k-0613'
    //     | null;

    /// Specifies the format that the model must output. Compatible with
    /// [GPT-4o](https://platform.openai.com/docs/models/gpt-4o),
    /// [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4),
    /// and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`.
    ///
    /// Setting to `{ "type": "json_object" }` enables JSON mode, which guarantees the
    /// message the model generates is valid JSON.
    ///
    /// **Important:** when using JSON mode, you **must** also instruct the model to
    /// produce JSON yourself via a system or user message. Without this, the model may
    /// generate an unending stream of whitespace until the generation reaches the token
    /// limit, resulting in a long-running and seemingly "stuck" request. Also note that
    /// the message content may be partially cut off if `finish_reason="length"`, which
    /// indicates the generation exceeded `max_tokens` or the conversation exceeded the
    /// max context length.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub response_format: Option<threads_api::AssistantResponseFormatOption>,
    /// 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.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub temperature: Option<f32>,
    /// Controls which (if any) tool is called by the model. `none` means the model will
    /// not call any tools and instead generates a message. `auto` is the default value
    /// and 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 before responding
    /// to the user. Specifying a particular tool like `{"type": "file_search"}` or
    /// `{"type": "function", "function": {"name": "my_function"}}` forces the model to
    /// call that tool.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_choice: Option<threads_api::AssistantToolChoiceOption>,
    /// Override the tools the assistant can use for this run. This is useful for
    /// modifying the behavior on a per-run basis.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tools: Option<Vec<assistants_api::AssistantTool>>,
    /// 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<f32>,
    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub truncation_strategy: Option<run_stream_params::TruncationStrategy>,
}

pub mod run_stream_params {
    use super::*;
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct AdditionalMessage {
        /// The text contents of the message.
        pub content: additional_message::Content,

        /// The role of the entity that is creating the message. Allowed values include:
        ///
        /// - `user`: Indicates the message is sent by an actual user and should be used in
        ///   most cases to represent user-generated messages.
        /// - `assistant`: Indicates the message is generated by the assistant. Use this
        ///   value to insert messages from the assistant into the conversation.
        pub role: additional_message::Role,

        /// A list of files attached to the message, and the tools they should be added to.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub attachments: Option<Vec<additional_message::Attachment>>,
        /// Set of 16 key-value pairs that can be attached to an object. This can be useful
        /// for storing additional information about the object in a structured format. Keys
        /// can be a maximum of 64 characters long and values can be a maxium of 512
        /// characters long.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub metadata: Option<Value>,
    }

    pub mod additional_message {
        use super::*;

        #[derive(Debug, Clone, Serialize, Deserialize)]
        #[serde(untagged)]
        pub enum Content {
            Text(String),
            Multiple(Vec<messages_api::MessageContent>), // String | Vec<messages_api::MessageContent>
        }

        impl Default for Content {
            fn default() -> Self {
                Content::Text(String::default())
            }
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub struct Attachment {
            /// The ID of the file to attach to the message.
            #[serde(skip_serializing_if = "Option::is_none")]
            file_id: Option<String>,

            /// The tools to add this file to.
            #[serde(skip_serializing_if = "Option::is_none")]
            tools: Option<Vec<attachment::Tool>>,
        }

        pub mod attachment {
            use super::*;

            #[derive(Debug, Clone, Serialize, Deserialize)]
            #[serde(untagged)]
            pub enum Tool {
                CodeInterpreterTool(assistants_api::CodeInterpreterTool),
                FileSearch(assistants_api::FileSearchTool),
            }

            impl Default for Tool {
                fn default() -> Self {
                    Tool::CodeInterpreterTool(assistants_api::CodeInterpreterTool::default())
                }
            }
        }

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        pub enum Role {
            #[default]
            User,
            Assistant,
        }
    }

    /// Controls for how a thread will be truncated prior to the run. Use this to
    /// control the intial context window of the run.
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct TruncationStrategy {
        /// The truncation strategy to use for the thread. The default is `auto`. If set to
        /// `last_messages`, the thread will be truncated to the n most recent messages in
        /// the thread. When set to `auto`, messages in the middle of the thread will be
        /// dropped to fit the context length of the model, `max_prompt_tokens`.
        #[serde(rename = "type")]
        pub kind: truncation_strategy::Type,

        /// The number of most recent messages from the thread when constructing the context
        /// for the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        last_messages: Option<u32>,
    }

    pub mod truncation_strategy {
        use super::*;

        #[derive(Default, Debug, Clone, Serialize, Deserialize)]
        #[serde(rename_all = "snake_case")]
        pub enum Type {
            #[default]
            Auto,
            LastMessages,
        }
    }
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunSubmitToolOutputsParams {
    /// A list of tools for which the outputs are being submitted.
    pub tool_outputs: Vec<run_submit_tool_outputs_params::ToolOutput>,

    /// If `true`, returns a stream of events that happen during the Run as server-sent
    /// events, terminating when the Run enters a terminal state with a `data: [DONE]`
    /// message.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub stream: Option<bool>,
}

pub mod run_submit_tool_outputs_params {
    use super::*;
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct ToolOutput {
        /// The output of the tool call to be submitted to continue the run.
        // #[serde(skip_serializing_if = "Option::is_none")]
        pub output: Option<String>,

        /// The ID of the tool call in the `required_action` object within the run object
        /// the output is being submitted for.
        // #[serde(skip_serializing_if = "Option::is_none")]
        pub tool_call_id: Option<String>,
    }
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunSubmitToolOutputsAndPollParams {
    /// A list of tools for which the outputs are being submitted.
    pub tool_outputs: Vec<run_submit_tool_outputs_and_poll_params::ToolOutput>,
}

pub mod run_submit_tool_outputs_and_poll_params {
    use super::*;
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct ToolOutput {
        /// The output of the tool call to be submitted to continue the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub output: Option<String>,

        /// The ID of the tool call in the `required_action` object within the run object
        /// the output is being submitted for.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub tool_call_id: Option<String>,
    }
}

#[derive(Default, Debug, Clone, Serialize, Deserialize)]
pub struct RunSubmitToolOutputsStreamParams {
    /// A list of tools for which the outputs are being submitted.
    pub tool_outputs: Vec<run_submit_tool_outputs_stream_params::ToolOutput>,
}

pub mod run_submit_tool_outputs_stream_params {
    use super::*;
    #[derive(Default, Debug, Clone, Serialize, Deserialize)]
    pub struct ToolOutput {
        /// The output of the tool call to be submitted to continue the run.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub output: Option<String>,
        /// The ID of the tool call in the `required_action` object within the run object
        /// the output is being submitted for.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub tool_call_id: Option<String>,
    }
}