Skip to content

Commit e0d0801

Browse files
authored
feat: add GPT4Turbo and GPT4Turbo20240409 (#703)
1 parent 187f416 commit e0d0801

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

completion.go

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ const (
2222
GPT432K = "gpt-4-32k"
2323
GPT40613 = "gpt-4-0613"
2424
GPT40314 = "gpt-4-0314"
25+
GPT4Turbo = "gpt-4-turbo"
26+
GPT4Turbo20240409 = "gpt-4-turbo-2024-04-09"
2527
GPT4Turbo0125 = "gpt-4-0125-preview"
2628
GPT4Turbo1106 = "gpt-4-1106-preview"
2729
GPT4TurboPreview = "gpt-4-turbo-preview"
@@ -84,6 +86,8 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
8486
GPT4VisionPreview: true,
8587
GPT4Turbo1106: true,
8688
GPT4Turbo0125: true,
89+
GPT4Turbo: true,
90+
GPT4Turbo20240409: true,
8791
GPT40314: true,
8892
GPT40613: true,
8993
GPT432K: true,

0 commit comments

Comments
 (0)