promptgun 0.8.3 → 0.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +702 -30
- package/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/package.json +4 -2
package/build/index.d.ts
CHANGED
|
@@ -20,58 +20,730 @@ export declare class AIClient {
|
|
|
20
20
|
chat<T = undefined>(toPrompt: (args?: T) => Prompt, args?: T): BasicPrompt<T>;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
export declare
|
|
23
|
+
export declare const AiModel: {
|
|
24
24
|
/**
|
|
25
|
-
* "GPT-4o (“o” for “omni”) is our versatile, high-intelligence flagship model. It accepts both text and image inputs, and produces text outputs (including Structured Outputs). It is the best model for most tasks, and is our most capable model outside of our o-series models."
|
|
26
25
|
* <table>
|
|
27
|
-
* <tr><td>Intelligence</td><td
|
|
28
|
-
* <tr><td>Speed</td><td>○○○</td><td>
|
|
26
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
27
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
29
28
|
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
30
|
-
* <tr><td>
|
|
31
|
-
* <tr><td>Price</td><td>
|
|
29
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
30
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
32
31
|
* </table>
|
|
33
|
-
*
|
|
32
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
33
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-audio-preview-2024-12-17">Official doc</a>
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
readonly gpt_4o_audio_preview_2024_12_17: "gpt-4o-audio-preview-2024-12-17";
|
|
36
36
|
/**
|
|
37
|
-
* "GPT-4.1 mini provides a balance between intelligence, speed, and cost that makes it an attractive model for many use cases."
|
|
38
37
|
* <table>
|
|
39
|
-
* <tr><td>Intelligence</td><td
|
|
40
|
-
* <tr><td>Speed</td><td
|
|
38
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
39
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
41
40
|
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
42
|
-
* <tr><td>
|
|
43
|
-
* <tr><td>Price</td><td>
|
|
41
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
42
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
44
43
|
* </table>
|
|
45
|
-
*
|
|
44
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
45
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-audio-preview-2024-10-01">Official doc</a>
|
|
46
|
+
*/
|
|
47
|
+
readonly gpt_4o_audio_preview_2024_10_01: "gpt-4o-audio-preview-2024-10-01";
|
|
48
|
+
/**
|
|
49
|
+
* <table>
|
|
50
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
51
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
52
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
53
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
54
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
55
|
+
* </table>
|
|
56
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
57
|
+
* <a href="https://platform.openai.com/docs/models/o3">Official doc</a>
|
|
58
|
+
*/
|
|
59
|
+
readonly o3: "o3";
|
|
60
|
+
/**
|
|
61
|
+
* <table>
|
|
62
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
63
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
64
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
65
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
66
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
67
|
+
* </table>
|
|
68
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
69
|
+
* <a href="https://platform.openai.com/docs/models/o3-2025-04-16">Official doc</a>
|
|
70
|
+
*/
|
|
71
|
+
readonly o3_2025_04_16: "o3-2025-04-16";
|
|
72
|
+
/**
|
|
73
|
+
* <table>
|
|
74
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
75
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
76
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
77
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
78
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
79
|
+
* </table>
|
|
80
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
81
|
+
* <a href="https://platform.openai.com/docs/models/o4-mini">Official doc</a>
|
|
46
82
|
*/
|
|
47
|
-
|
|
83
|
+
readonly o4_mini: "o4-mini";
|
|
48
84
|
/**
|
|
49
|
-
* "GPT-4.1 nano is the fastest, most cost-effective GPT-4.1 model."
|
|
50
85
|
* <table>
|
|
51
|
-
* <tr><td>Intelligence</td><td>○○</td><td>
|
|
52
|
-
* <tr><td>Speed</td><td>○○○○○</td><td>Very
|
|
86
|
+
* <tr><td>Intelligence</td><td>○○</td><td>Low</td></tr>
|
|
87
|
+
* <tr><td>Speed</td><td>○○○○○</td><td>Very Fast</td></tr>
|
|
53
88
|
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
54
|
-
* <tr><td>
|
|
55
|
-
* <tr><td>Price</td><td>
|
|
89
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
90
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
56
91
|
* </table>
|
|
92
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
57
93
|
* <a href="https://platform.openai.com/docs/models/gpt-4.1-nano">Official doc</a>
|
|
58
94
|
*/
|
|
59
|
-
gpt_4_1_nano
|
|
95
|
+
readonly gpt_4_1_nano: "gpt-4.1-nano";
|
|
60
96
|
/**
|
|
61
|
-
* "o3 is a well-rounded and powerful model across domains. It sets a new standard for math, science, coding, and visual reasoning tasks. It also excels at technical writing and instruction-following. Use it to think through multi-step problems that involve analysis across text, code, and images."
|
|
62
97
|
* <table>
|
|
63
|
-
* <tr><td>Intelligence</td><td
|
|
64
|
-
* <tr><td>Speed</td><td
|
|
98
|
+
* <tr><td>Intelligence</td><td>○○</td><td>Low</td></tr>
|
|
99
|
+
* <tr><td>Speed</td><td>○○○○○</td><td>Very Fast</td></tr>
|
|
65
100
|
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
66
|
-
* <tr><td>
|
|
67
|
-
* <tr><td>Price</td><td>
|
|
101
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
102
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
68
103
|
* </table>
|
|
69
|
-
*
|
|
104
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
105
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4.1-nano-2025-04-14">Official doc</a>
|
|
70
106
|
*/
|
|
71
|
-
|
|
72
|
-
|
|
107
|
+
readonly gpt_4_1_nano_2025_04_14: "gpt-4.1-nano-2025-04-14";
|
|
108
|
+
/**
|
|
109
|
+
* <table>
|
|
110
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
111
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
112
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
113
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
114
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
115
|
+
* </table>
|
|
116
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
117
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-realtime-preview-2024-10-01">Official doc</a>
|
|
118
|
+
*/
|
|
119
|
+
readonly gpt_4o_realtime_preview_2024_10_01: "gpt-4o-realtime-preview-2024-10-01";
|
|
120
|
+
/**
|
|
121
|
+
* <table>
|
|
122
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
123
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
124
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
125
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
126
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
127
|
+
* </table>
|
|
128
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
129
|
+
* <a href="https://platform.openai.com/docs/models/o4-mini-2025-04-16">Official doc</a>
|
|
130
|
+
*/
|
|
131
|
+
readonly o4_mini_2025_04_16: "o4-mini-2025-04-16";
|
|
132
|
+
/**
|
|
133
|
+
* <table>
|
|
134
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
135
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
136
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
137
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
138
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
139
|
+
* </table>
|
|
140
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
141
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-realtime-preview">Official doc</a>
|
|
142
|
+
*/
|
|
143
|
+
readonly gpt_4o_realtime_preview: "gpt-4o-realtime-preview";
|
|
144
|
+
/**
|
|
145
|
+
* <table>
|
|
146
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
147
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
148
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
149
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
150
|
+
* <tr><td>Price</td><td>\$0.03/1K tokens</td><td>\$0.06/1K tokens</td></tr>
|
|
151
|
+
* </table>
|
|
152
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
153
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4">Official doc</a>
|
|
154
|
+
*/
|
|
155
|
+
readonly gpt_4: "gpt-4";
|
|
156
|
+
/**
|
|
157
|
+
* <table>
|
|
158
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
159
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
160
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
161
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
162
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
163
|
+
* </table>
|
|
164
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
165
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-audio-preview">Official doc</a>
|
|
166
|
+
*/
|
|
167
|
+
readonly gpt_4o_mini_audio_preview: "gpt-4o-mini-audio-preview";
|
|
168
|
+
/**
|
|
169
|
+
* <table>
|
|
170
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
171
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
172
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
173
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
174
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
175
|
+
* </table>
|
|
176
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
177
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-audio-preview">Official doc</a>
|
|
178
|
+
*/
|
|
179
|
+
readonly gpt_4o_audio_preview: "gpt-4o-audio-preview";
|
|
180
|
+
/**
|
|
181
|
+
* <table>
|
|
182
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
183
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
184
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
185
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
186
|
+
* <tr><td>Price</td><td>\$15.00/1M tokens</td><td>\$60.00/1M tokens</td></tr>
|
|
187
|
+
* </table>
|
|
188
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
189
|
+
* <a href="https://platform.openai.com/docs/models/o1-preview-2024-09-12">Official doc</a>
|
|
190
|
+
*/
|
|
191
|
+
readonly o1_preview_2024_09_12: "o1-preview-2024-09-12";
|
|
192
|
+
/**
|
|
193
|
+
* <table>
|
|
194
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
195
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
196
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
197
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
198
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
199
|
+
* </table>
|
|
200
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
201
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-realtime-preview">Official doc</a>
|
|
202
|
+
*/
|
|
203
|
+
readonly gpt_4o_mini_realtime_preview: "gpt-4o-mini-realtime-preview";
|
|
204
|
+
/**
|
|
205
|
+
* <table>
|
|
206
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
207
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
208
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
209
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
210
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
211
|
+
* </table>
|
|
212
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
213
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4.1-mini">Official doc</a>
|
|
214
|
+
*/
|
|
215
|
+
readonly gpt_4_1_mini: "gpt-4.1-mini";
|
|
216
|
+
/**
|
|
217
|
+
* <table>
|
|
218
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
219
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
220
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
221
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
222
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
223
|
+
* </table>
|
|
224
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
225
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-realtime-preview-2024-12-17">Official doc</a>
|
|
226
|
+
*/
|
|
227
|
+
readonly gpt_4o_mini_realtime_preview_2024_12_17: "gpt-4o-mini-realtime-preview-2024-12-17";
|
|
228
|
+
/**
|
|
229
|
+
* <table>
|
|
230
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
231
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
232
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
233
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
234
|
+
* <tr><td>Price</td><td>\$0.0015/1K tokens</td><td>\$0.0020/1K tokens</td></tr>
|
|
235
|
+
* </table>
|
|
236
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
237
|
+
* <a href="https://platform.openai.com/docs/models/gpt-3.5-turbo-instruct-0914">Official doc</a>
|
|
238
|
+
*/
|
|
239
|
+
readonly gpt_3_5_turbo_instruct_0914: "gpt-3.5-turbo-instruct-0914";
|
|
240
|
+
/**
|
|
241
|
+
* <table>
|
|
242
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
243
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
244
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
245
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
246
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
247
|
+
* </table>
|
|
248
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
249
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-search-preview">Official doc</a>
|
|
250
|
+
*/
|
|
251
|
+
readonly gpt_4o_mini_search_preview: "gpt-4o-mini-search-preview";
|
|
252
|
+
/**
|
|
253
|
+
* <table>
|
|
254
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
255
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
256
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
257
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
258
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
259
|
+
* </table>
|
|
260
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
261
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4.1-mini-2025-04-14">Official doc</a>
|
|
262
|
+
*/
|
|
263
|
+
readonly gpt_4_1_mini_2025_04_14: "gpt-4.1-mini-2025-04-14";
|
|
264
|
+
/**
|
|
265
|
+
* <table>
|
|
266
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
267
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
268
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
269
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
270
|
+
* <tr><td>Price</td><td>\$0.0010/1K tokens</td><td>\$0.0020/1K tokens</td></tr>
|
|
271
|
+
* </table>
|
|
272
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
273
|
+
* <a href="https://platform.openai.com/docs/models/gpt-3.5-turbo-1106">Official doc</a>
|
|
274
|
+
*/
|
|
275
|
+
readonly gpt_3_5_turbo_1106: "gpt-3.5-turbo-1106";
|
|
276
|
+
/**
|
|
277
|
+
* <table>
|
|
278
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
279
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
280
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
281
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
282
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
283
|
+
* </table>
|
|
284
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
285
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-search-preview">Official doc</a>
|
|
286
|
+
*/
|
|
287
|
+
readonly gpt_4o_search_preview: "gpt-4o-search-preview";
|
|
288
|
+
/**
|
|
289
|
+
* <table>
|
|
290
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
291
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
292
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
293
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
294
|
+
* <tr><td>Price</td><td>\$0.01/1K tokens</td><td>\$0.03/1K tokens</td></tr>
|
|
295
|
+
* </table>
|
|
296
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
297
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4-turbo">Official doc</a>
|
|
298
|
+
*/
|
|
299
|
+
readonly gpt_4_turbo: "gpt-4-turbo";
|
|
300
|
+
/**
|
|
301
|
+
* <table>
|
|
302
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
303
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
304
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
305
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
306
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
307
|
+
* </table>
|
|
308
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
309
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-realtime-preview-2024-12-17">Official doc</a>
|
|
310
|
+
*/
|
|
311
|
+
readonly gpt_4o_realtime_preview_2024_12_17: "gpt-4o-realtime-preview-2024-12-17";
|
|
312
|
+
/**
|
|
313
|
+
* <table>
|
|
314
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
315
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
316
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
317
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
318
|
+
* <tr><td>Price</td><td>\$0.0015/1K tokens</td><td>\$0.0020/1K tokens</td></tr>
|
|
319
|
+
* </table>
|
|
320
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
321
|
+
* <a href="https://platform.openai.com/docs/models/gpt-3.5-turbo-instruct">Official doc</a>
|
|
322
|
+
*/
|
|
323
|
+
readonly gpt_3_5_turbo_instruct: "gpt-3.5-turbo-instruct";
|
|
324
|
+
/**
|
|
325
|
+
* <table>
|
|
326
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
327
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
328
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
329
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
330
|
+
* <tr><td>Price</td><td>\$0.0015/1K tokens</td><td>\$0.0020/1K tokens</td></tr>
|
|
331
|
+
* </table>
|
|
332
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
333
|
+
* <a href="https://platform.openai.com/docs/models/gpt-3.5-turbo">Official doc</a>
|
|
334
|
+
*/
|
|
335
|
+
readonly gpt_3_5_turbo: "gpt-3.5-turbo";
|
|
336
|
+
/**
|
|
337
|
+
* <table>
|
|
338
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
339
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
340
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
341
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
342
|
+
* <tr><td>Price</td><td>\$0.01/1K tokens</td><td>\$0.03/1K tokens</td></tr>
|
|
343
|
+
* </table>
|
|
344
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
345
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4-turbo-preview">Official doc</a>
|
|
346
|
+
*/
|
|
347
|
+
readonly gpt_4_turbo_preview: "gpt-4-turbo-preview";
|
|
348
|
+
/**
|
|
349
|
+
* <table>
|
|
350
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
351
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
352
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
353
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
354
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
355
|
+
* </table>
|
|
356
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
357
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-search-preview-2025-03-11">Official doc</a>
|
|
358
|
+
*/
|
|
359
|
+
readonly gpt_4o_mini_search_preview_2025_03_11: "gpt-4o-mini-search-preview-2025-03-11";
|
|
360
|
+
/**
|
|
361
|
+
* <table>
|
|
362
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
363
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
364
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
365
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
366
|
+
* <tr><td>Price</td><td>\$0.01/1K tokens</td><td>\$0.03/1K tokens</td></tr>
|
|
367
|
+
* </table>
|
|
368
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
369
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4-0125-preview">Official doc</a>
|
|
370
|
+
*/
|
|
371
|
+
readonly gpt_4_0125_preview: "gpt-4-0125-preview";
|
|
372
|
+
/**
|
|
373
|
+
* <table>
|
|
374
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
375
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
376
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
377
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
378
|
+
* <tr><td>Price</td><td>\$0.005/1K tokens</td><td>\$0.015/1K tokens</td></tr>
|
|
379
|
+
* </table>
|
|
380
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
381
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-2024-11-20">Official doc</a>
|
|
382
|
+
*/
|
|
383
|
+
readonly gpt_4o_2024_11_20: "gpt-4o-2024-11-20";
|
|
384
|
+
/**
|
|
385
|
+
* <table>
|
|
386
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
387
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
388
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
389
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
390
|
+
* <tr><td>Price</td><td>\$0.005/1K tokens</td><td>\$0.015/1K tokens</td></tr>
|
|
391
|
+
* </table>
|
|
392
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
393
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-2024-05-13">Official doc</a>
|
|
394
|
+
*/
|
|
395
|
+
readonly gpt_4o_2024_05_13: "gpt-4o-2024-05-13";
|
|
396
|
+
/**
|
|
397
|
+
* <table>
|
|
398
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
399
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
400
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
401
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
402
|
+
* <tr><td>Price</td><td>\$0.01/1K tokens</td><td>\$0.03/1K tokens</td></tr>
|
|
403
|
+
* </table>
|
|
404
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
405
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4-turbo-2024-04-09">Official doc</a>
|
|
406
|
+
*/
|
|
407
|
+
readonly gpt_4_turbo_2024_04_09: "gpt-4-turbo-2024-04-09";
|
|
408
|
+
/**
|
|
409
|
+
* <table>
|
|
410
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
411
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
412
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
413
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
414
|
+
* <tr><td>Price</td><td>\$0.003/1K tokens</td><td>\$0.004/1K tokens</td></tr>
|
|
415
|
+
* </table>
|
|
416
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
417
|
+
* <a href="https://platform.openai.com/docs/models/gpt-3.5-turbo-16k">Official doc</a>
|
|
418
|
+
*/
|
|
419
|
+
readonly gpt_3_5_turbo_16k: "gpt-3.5-turbo-16k";
|
|
420
|
+
/**
|
|
421
|
+
* <table>
|
|
422
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
423
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
424
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
425
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
426
|
+
* <tr><td>Price</td><td>\$15.00/1M tokens</td><td>\$60.00/1M tokens</td></tr>
|
|
427
|
+
* </table>
|
|
428
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
429
|
+
* <a href="https://platform.openai.com/docs/models/o1-preview">Official doc</a>
|
|
430
|
+
*/
|
|
431
|
+
readonly o1_preview: "o1-preview";
|
|
432
|
+
/**
|
|
433
|
+
* <table>
|
|
434
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
435
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
436
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
437
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
438
|
+
* <tr><td>Price</td><td>\$0.03/1K tokens</td><td>\$0.06/1K tokens</td></tr>
|
|
439
|
+
* </table>
|
|
440
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
441
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4-0613">Official doc</a>
|
|
442
|
+
*/
|
|
443
|
+
readonly gpt_4_0613: "gpt-4-0613";
|
|
444
|
+
/**
|
|
445
|
+
* <table>
|
|
446
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
447
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
448
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
449
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
450
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
451
|
+
* </table>
|
|
452
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
453
|
+
* <a href="https://platform.openai.com/docs/models/o3-mini">Official doc</a>
|
|
454
|
+
*/
|
|
455
|
+
readonly o3_mini: "o3-mini";
|
|
456
|
+
/**
|
|
457
|
+
* <table>
|
|
458
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
459
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
460
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
461
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
462
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
463
|
+
* </table>
|
|
464
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
465
|
+
* <a href="https://platform.openai.com/docs/models/o3-mini-2025-01-31">Official doc</a>
|
|
466
|
+
*/
|
|
467
|
+
readonly o3_mini_2025_01_31: "o3-mini-2025-01-31";
|
|
468
|
+
/**
|
|
469
|
+
* <table>
|
|
470
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
471
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
472
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
473
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
474
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
475
|
+
* </table>
|
|
476
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
477
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4.5-preview">Official doc</a>
|
|
478
|
+
*/
|
|
479
|
+
readonly gpt_4_5_preview: "gpt-4.5-preview";
|
|
480
|
+
/**
|
|
481
|
+
* <table>
|
|
482
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
483
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
484
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
485
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
486
|
+
* <tr><td>Price</td><td>\$15.00/1M tokens</td><td>\$60.00/1M tokens</td></tr>
|
|
487
|
+
* </table>
|
|
488
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
489
|
+
* <a href="https://platform.openai.com/docs/models/o1-2024-12-17">Official doc</a>
|
|
490
|
+
*/
|
|
491
|
+
readonly o1_2024_12_17: "o1-2024-12-17";
|
|
492
|
+
/**
|
|
493
|
+
* <table>
|
|
494
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
495
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
496
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
497
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
498
|
+
* <tr><td>Price</td><td>\$15.00/1M tokens</td><td>\$60.00/1M tokens</td></tr>
|
|
499
|
+
* </table>
|
|
500
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
501
|
+
* <a href="https://platform.openai.com/docs/models/o1">Official doc</a>
|
|
502
|
+
*/
|
|
503
|
+
readonly o1: "o1";
|
|
504
|
+
/**
|
|
505
|
+
* <table>
|
|
506
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
507
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
508
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
509
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
510
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
511
|
+
* </table>
|
|
512
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
513
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4.5-preview-2025-02-27">Official doc</a>
|
|
514
|
+
*/
|
|
515
|
+
readonly gpt_4_5_preview_2025_02_27: "gpt-4.5-preview-2025-02-27";
|
|
516
|
+
/**
|
|
517
|
+
* <table>
|
|
518
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
519
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
520
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
521
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
522
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
523
|
+
* </table>
|
|
524
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
525
|
+
* <a href="https://platform.openai.com/docs/models/o1-pro">Official doc</a>
|
|
526
|
+
*/
|
|
527
|
+
readonly o1_pro: "o1-pro";
|
|
528
|
+
/**
|
|
529
|
+
* <table>
|
|
530
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
531
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
532
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
533
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
534
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
535
|
+
* </table>
|
|
536
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
537
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-search-preview-2025-03-11">Official doc</a>
|
|
538
|
+
*/
|
|
539
|
+
readonly gpt_4o_search_preview_2025_03_11: "gpt-4o-search-preview-2025-03-11";
|
|
540
|
+
/**
|
|
541
|
+
* <table>
|
|
542
|
+
* <tr><td>Intelligence</td><td>○○○○○</td><td>Very High</td></tr>
|
|
543
|
+
* <tr><td>Speed</td><td>○○</td><td>Slow</td></tr>
|
|
544
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
545
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
546
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
547
|
+
* </table>
|
|
548
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
549
|
+
* <a href="https://platform.openai.com/docs/models/o1-pro-2025-03-19">Official doc</a>
|
|
550
|
+
*/
|
|
551
|
+
readonly o1_pro_2025_03_19: "o1-pro-2025-03-19";
|
|
552
|
+
/**
|
|
553
|
+
* <table>
|
|
554
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
555
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
556
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
557
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
558
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
559
|
+
* </table>
|
|
560
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
561
|
+
* <a href="https://platform.openai.com/docs/models/omni-moderation-2024-09-26">Official doc</a>
|
|
562
|
+
*/
|
|
563
|
+
readonly omni_moderation_2024_09_26: "omni-moderation-2024-09-26";
|
|
564
|
+
/**
|
|
565
|
+
* <table>
|
|
566
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
567
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
568
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
569
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
570
|
+
* <tr><td>Price</td><td>\$0.005/1K tokens</td><td>\$0.015/1K tokens</td></tr>
|
|
571
|
+
* </table>
|
|
572
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
573
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o">Official doc</a>
|
|
574
|
+
*/
|
|
575
|
+
readonly gpt_4o: "gpt-4o";
|
|
576
|
+
/**
|
|
577
|
+
* <table>
|
|
578
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
579
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
580
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
581
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
582
|
+
* <tr><td>Price</td><td>\$0.150/1M tokens</td><td>\$0.600/1M tokens</td></tr>
|
|
583
|
+
* </table>
|
|
584
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
585
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini">Official doc</a>
|
|
586
|
+
*/
|
|
587
|
+
readonly gpt_4o_mini: "gpt-4o-mini";
|
|
588
|
+
/**
|
|
589
|
+
* <table>
|
|
590
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
591
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
592
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
593
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
594
|
+
* <tr><td>Price</td><td>\$0.005/1K tokens</td><td>\$0.015/1K tokens</td></tr>
|
|
595
|
+
* </table>
|
|
596
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
597
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-2024-08-06">Official doc</a>
|
|
598
|
+
*/
|
|
599
|
+
readonly gpt_4o_2024_08_06: "gpt-4o-2024-08-06";
|
|
600
|
+
/**
|
|
601
|
+
* <table>
|
|
602
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
603
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
604
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
605
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
606
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
607
|
+
* </table>
|
|
608
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
609
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4.1">Official doc</a>
|
|
610
|
+
*/
|
|
611
|
+
readonly gpt_4_1: "gpt-4.1";
|
|
612
|
+
/**
|
|
613
|
+
* <table>
|
|
614
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
615
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
616
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
617
|
+
* <tr><td>Type</td><td>Audio</td><td>Text</td></tr>
|
|
618
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
619
|
+
* </table>
|
|
620
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
621
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-transcribe">Official doc</a>
|
|
622
|
+
*/
|
|
623
|
+
readonly gpt_4o_transcribe: "gpt-4o-transcribe";
|
|
624
|
+
/**
|
|
625
|
+
* <table>
|
|
626
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
627
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
628
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
629
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
630
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
631
|
+
* </table>
|
|
632
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
633
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4.1-2025-04-14">Official doc</a>
|
|
634
|
+
*/
|
|
635
|
+
readonly gpt_4_1_2025_04_14: "gpt-4.1-2025-04-14";
|
|
636
|
+
/**
|
|
637
|
+
* <table>
|
|
638
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
639
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
640
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
641
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
642
|
+
* <tr><td>Price</td><td>\$0.150/1M tokens</td><td>\$0.600/1M tokens</td></tr>
|
|
643
|
+
* </table>
|
|
644
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
645
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-2024-07-18">Official doc</a>
|
|
646
|
+
*/
|
|
647
|
+
readonly gpt_4o_mini_2024_07_18: "gpt-4o-mini-2024-07-18";
|
|
648
|
+
/**
|
|
649
|
+
* <table>
|
|
650
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
651
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
652
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
653
|
+
* <tr><td>Type</td><td>Audio</td><td>Text</td></tr>
|
|
654
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
655
|
+
* </table>
|
|
656
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
657
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-transcribe">Official doc</a>
|
|
658
|
+
*/
|
|
659
|
+
readonly gpt_4o_mini_transcribe: "gpt-4o-mini-transcribe";
|
|
660
|
+
/**
|
|
661
|
+
* <table>
|
|
662
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
663
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
664
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
665
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
666
|
+
* <tr><td>Price</td><td>\$3.00/1M tokens</td><td>\$12.00/1M tokens</td></tr>
|
|
667
|
+
* </table>
|
|
668
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
669
|
+
* <a href="https://platform.openai.com/docs/models/o1-mini">Official doc</a>
|
|
670
|
+
*/
|
|
671
|
+
readonly o1_mini: "o1-mini";
|
|
672
|
+
/**
|
|
673
|
+
* <table>
|
|
674
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
675
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
676
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
677
|
+
* <tr><td>Type</td><td>Text/Audio</td><td>Text/Audio</td></tr>
|
|
678
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
679
|
+
* </table>
|
|
680
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
681
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-audio-preview-2024-12-17">Official doc</a>
|
|
682
|
+
*/
|
|
683
|
+
readonly gpt_4o_mini_audio_preview_2024_12_17: "gpt-4o-mini-audio-preview-2024-12-17";
|
|
684
|
+
/**
|
|
685
|
+
* <table>
|
|
686
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
687
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
688
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
689
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
690
|
+
* <tr><td>Price</td><td>\$0.0005/1K tokens</td><td>\$0.0015/1K tokens</td></tr>
|
|
691
|
+
* </table>
|
|
692
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
693
|
+
* <a href="https://platform.openai.com/docs/models/gpt-3.5-turbo-0125">Official doc</a>
|
|
694
|
+
*/
|
|
695
|
+
readonly gpt_3_5_turbo_0125: "gpt-3.5-turbo-0125";
|
|
696
|
+
/**
|
|
697
|
+
* <table>
|
|
698
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
699
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
700
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
701
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
702
|
+
* <tr><td>Price</td><td>\$3.00/1M tokens</td><td>\$12.00/1M tokens</td></tr>
|
|
703
|
+
* </table>
|
|
704
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
705
|
+
* <a href="https://platform.openai.com/docs/models/o1-mini-2024-09-12">Official doc</a>
|
|
706
|
+
*/
|
|
707
|
+
readonly o1_mini_2024_09_12: "o1-mini-2024-09-12";
|
|
708
|
+
/**
|
|
709
|
+
* <table>
|
|
710
|
+
* <tr><td>Intelligence</td><td>○○○○</td><td>High</td></tr>
|
|
711
|
+
* <tr><td>Speed</td><td>○○○</td><td>Moderate</td></tr>
|
|
712
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
713
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
714
|
+
* <tr><td>Price</td><td>\$0.01/1K tokens</td><td>\$0.03/1K tokens</td></tr>
|
|
715
|
+
* </table>
|
|
716
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
717
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4-1106-preview">Official doc</a>
|
|
718
|
+
*/
|
|
719
|
+
readonly gpt_4_1106_preview: "gpt-4-1106-preview";
|
|
720
|
+
/**
|
|
721
|
+
* <table>
|
|
722
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
723
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
724
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
725
|
+
* <tr><td>Type</td><td>Text</td><td>Audio</td></tr>
|
|
726
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
727
|
+
* </table>
|
|
728
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
729
|
+
* <a href="https://platform.openai.com/docs/models/gpt-4o-mini-tts">Official doc</a>
|
|
730
|
+
*/
|
|
731
|
+
readonly gpt_4o_mini_tts: "gpt-4o-mini-tts";
|
|
732
|
+
/**
|
|
733
|
+
* <table>
|
|
734
|
+
* <tr><td>Intelligence</td><td>○○○</td><td>Moderate</td></tr>
|
|
735
|
+
* <tr><td>Speed</td><td>○○○○</td><td>Fast</td></tr>
|
|
736
|
+
* <tr><td></td><td>Input</td><td>Output</td></tr>
|
|
737
|
+
* <tr><td>Type</td><td>Text</td><td>Text</td></tr>
|
|
738
|
+
* <tr><td>Price</td><td>Unknown</td><td>Unknown</td></tr>
|
|
739
|
+
* </table>
|
|
740
|
+
* Note, this documentation is auto-generated and may contain errors. For the most accurate information, please refer to the official documentation.
|
|
741
|
+
* <a href="https://platform.openai.com/docs/models/omni-moderation-latest">Official doc</a>
|
|
742
|
+
*/
|
|
743
|
+
readonly omni_moderation_latest: "omni-moderation-latest";
|
|
744
|
+
};
|
|
73
745
|
|
|
74
|
-
export declare type AiModelId =
|
|
746
|
+
export declare type AiModelId = (typeof AiModel)[keyof typeof AiModel];
|
|
75
747
|
|
|
76
748
|
export declare type AnyJson = string | null | boolean | number | JsonArray | JsonObject;
|
|
77
749
|
|