We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 187f416 commit e0d0801Copy full SHA for e0d0801
completion.go
@@ -22,6 +22,8 @@ const (
22
GPT432K = "gpt-4-32k"
23
GPT40613 = "gpt-4-0613"
24
GPT40314 = "gpt-4-0314"
25
+ GPT4Turbo = "gpt-4-turbo"
26
+ GPT4Turbo20240409 = "gpt-4-turbo-2024-04-09"
27
GPT4Turbo0125 = "gpt-4-0125-preview"
28
GPT4Turbo1106 = "gpt-4-1106-preview"
29
GPT4TurboPreview = "gpt-4-turbo-preview"
@@ -84,6 +86,8 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
84
86
GPT4VisionPreview: true,
85
87
GPT4Turbo1106: true,
88
GPT4Turbo0125: true,
89
+ GPT4Turbo: true,
90
+ GPT4Turbo20240409: true,
91
GPT40314: true,
92
GPT40613: true,
93
GPT432K: true,
0 commit comments