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.
1 parent 3e47e6f commit 27c1c56Copy full SHA for 27c1c56
completion.go
@@ -24,6 +24,8 @@ const (
24
GPT40314 = "gpt-4-0314"
25
GPT4o = "gpt-4o"
26
GPT4o20240513 = "gpt-4o-2024-05-13"
27
+ GPT4oMini = "gpt-4o-mini"
28
+ GPT4oMini20240718 = "gpt-4o-mini-2024-07-18"
29
GPT4Turbo = "gpt-4-turbo"
30
GPT4Turbo20240409 = "gpt-4-turbo-2024-04-09"
31
GPT4Turbo0125 = "gpt-4-0125-preview"
@@ -89,6 +91,8 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
89
91
GPT4: true,
90
92
GPT4o: true,
93
GPT4o20240513: true,
94
+ GPT4oMini: true,
95
+ GPT4oMini20240718: true,
96
GPT4TurboPreview: true,
97
GPT4VisionPreview: true,
98
GPT4Turbo1106: true,
0 commit comments