mirror of
https://github.com/mii443/openai-api-rs.git
synced 2025-08-22 15:15:34 +00:00
Add o1 model
This commit is contained in:
@ -24,6 +24,12 @@ macro_rules! impl_builder_methods {
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
pub struct EmptyRequestBody {}
|
||||
|
||||
// https://platform.openai.com/docs/models/o1
|
||||
pub const O1_PREVIEW: &str = "o1-preview";
|
||||
pub const O1_PREVIEW_2024_09_12: &str = "o1-preview-2024-09-12";
|
||||
pub const O1_MINI: &str = "o1-mini";
|
||||
pub const O1_MINI_2024_09_12: &str = "o1-mini-2024-09-12";
|
||||
|
||||
// https://platform.openai.com/docs/models/gpt-4o-mini
|
||||
pub const GPT4_O_MINI: &str = "gpt-4o-mini";
|
||||
pub const GPT4_O_MINI_2024_07_18: &str = "gpt-4o-mini-2024-07-18";
|
||||
|
Reference in New Issue
Block a user