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
/*
* OpenAI API
*
* The OpenAI REST API. Please see pub https:///platform.openai.com/docs/api-reference for more details.
*
* OpenAPI spec pub version: 2.3.0
*
* Generated pub by: https:///github.com/swagger-api/swagger-codegen.git
*/
#[allow(unused_imports)]
use serde_json::Value;
/// on openapi.yaml
///
/// ```yaml
/// ModelIdsShared:
/// example: gpt-4o
/// anyOf:
/// - type: string
/// - type: string
/// enum:
/// - gpt-4.1
/// - gpt-4.1-mini
/// - gpt-4.1-nano
/// - gpt-4.1-2025-04-14
/// - gpt-4.1-mini-2025-04-14
/// - gpt-4.1-nano-2025-04-14
/// - o4-mini
/// - o4-mini-2025-04-16
/// - o3
/// - o3-2025-04-16
/// - o3-mini
/// - o3-mini-2025-01-31
/// - o1
/// - o1-2024-12-17
/// - o1-preview
/// - o1-preview-2024-09-12
/// - o1-mini
/// - o1-mini-2024-09-12
/// - gpt-4o
/// - gpt-4o-2024-11-20
/// - gpt-4o-2024-08-06
/// - gpt-4o-2024-05-13
/// - gpt-4o-audio-preview
/// - gpt-4o-audio-preview-2024-10-01
/// - gpt-4o-audio-preview-2024-12-17
/// - gpt-4o-mini-audio-preview
/// - gpt-4o-mini-audio-preview-2024-12-17
/// - gpt-4o-search-preview
/// - gpt-4o-mini-search-preview
/// - gpt-4o-search-preview-2025-03-11
/// - gpt-4o-mini-search-preview-2025-03-11
/// - chatgpt-4o-latest
/// - gpt-4o-mini
/// - gpt-4o-mini-2024-07-18
/// - 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-0301
/// - gpt-3.5-turbo-0613
/// - gpt-3.5-turbo-1106
/// - gpt-3.5-turbo-0125
/// - gpt-3.5-turbo-16k-0613
/// ```
pub type ModelIdsShared = crate::AssistantSupportedModels;