Add o1 model

This commit is contained in:
Dongri Jin
2024-09-13 09:20:38 +09:00
parent c57c4c241e
commit e0406d0a02

View File

@ -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";