We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b29802 + 6fb04be commit 499e4ceCopy full SHA for 499e4ce
src/v1/common.rs
@@ -24,6 +24,10 @@ macro_rules! impl_builder_methods {
24
#[derive(Debug, Serialize, Deserialize)]
25
pub struct EmptyRequestBody {}
26
27
+// https://platform.openai.com/docs/models#gpt-4-5
28
+pub const GPT4_5_PREVIEW: &str = "gpt-4.5-preview";
29
+pub const GPT4_5_PREVIEW_2025_02_27: &str = "gpt-4.5-preview-2025-02-27";
30
+
31
// https://platform.openai.com/docs/models/o1
32
pub const O1_PREVIEW: &str = "o1-preview";
33
pub const O1_PREVIEW_2024_09_12: &str = "o1-preview-2024-09-12";
0 commit comments