We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 962baf8 commit 3d91fccCopy full SHA for 3d91fcc
src/v1/common.rs
@@ -24,6 +24,12 @@ macro_rules! impl_builder_methods {
24
#[derive(Debug, Serialize, Deserialize)]
25
pub struct EmptyRequestBody {}
26
27
+// https://platform.openai.com/docs/models/o3
28
+pub const O3: &str = "o3";
29
+pub const O3_2025_04_16: &str = "o3-2025-04-16";
30
+pub const O3_MINI: &str = "o3-mini";
31
+pub const O3_MINI_2025_01_31: &str = "o3-mini-2025-01-31";
32
+
33
// https://platform.openai.com/docs/models#gpt-4-5
34
pub const GPT4_5_PREVIEW: &str = "gpt-4.5-preview";
35
pub const GPT4_5_PREVIEW_2025_02_27: &str = "gpt-4.5-preview-2025-02-27";
0 commit comments