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 17759c5 + ebf2e43 commit c57c4c2Copy full SHA for c57c4c2
src/v1/common.rs
@@ -26,10 +26,13 @@ pub struct EmptyRequestBody {}
26
27
// https://platform.openai.com/docs/models/gpt-4o-mini
28
pub const GPT4_O_MINI: &str = "gpt-4o-mini";
29
+pub const GPT4_O_MINI_2024_07_18: &str = "gpt-4o-mini-2024-07-18";
30
31
// https://platform.openai.com/docs/models/gpt-4o
32
pub const GPT4_O: &str = "gpt-4o";
33
pub const GPT4_O_2024_05_13: &str = "gpt-4o-2024-05-13";
34
+pub const GPT4_O_2024_08_06: &str = "gpt-4o-2024-08-06";
35
+pub const GPT4_O_LATEST: &str = "chatgpt-4o-latest";
36
37
// https://platform.openai.com/docs/models/gpt-3-5
38
pub const GPT3_5_TURBO_1106: &str = "gpt-3.5-turbo-1106";
0 commit comments