We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 030b7cb commit c37cf9aCopy full SHA for c37cf9a
completion.go
@@ -25,6 +25,7 @@ const (
25
GPT4o = "gpt-4o"
26
GPT4o20240513 = "gpt-4o-2024-05-13"
27
GPT4o20240806 = "gpt-4o-2024-08-06"
28
+ GPT4oLatest = "chatgpt-4o-latest"
29
GPT4oMini = "gpt-4o-mini"
30
GPT4oMini20240718 = "gpt-4o-mini-2024-07-18"
31
GPT4Turbo = "gpt-4-turbo"
@@ -93,6 +94,7 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
93
94
GPT4o: true,
95
GPT4o20240513: true,
96
GPT4o20240806: true,
97
+ GPT4oLatest: true,
98
GPT4oMini: true,
99
GPT4oMini20240718: true,
100
GPT4TurboPreview: true,
0 commit comments