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.
2 parents c57c4c2 + e0406d0 commit 6194ae2Copy full SHA for 6194ae2
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/o1
28
+pub const O1_PREVIEW: &str = "o1-preview";
29
+pub const O1_PREVIEW_2024_09_12: &str = "o1-preview-2024-09-12";
30
+pub const O1_MINI: &str = "o1-mini";
31
+pub const O1_MINI_2024_09_12: &str = "o1-mini-2024-09-12";
32
+
33
// https://platform.openai.com/docs/models/gpt-4o-mini
34
pub const GPT4_O_MINI: &str = "gpt-4o-mini";
35
pub const GPT4_O_MINI_2024_07_18: &str = "gpt-4o-mini-2024-07-18";
0 commit comments