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 06ff541 commit bc8cdd3Copy full SHA for bc8cdd3
completion.go
@@ -27,6 +27,7 @@ const (
27
GPT4TurboPreview = "gpt-4-turbo-preview"
28
GPT4VisionPreview = "gpt-4-vision-preview"
29
GPT4 = "gpt-4"
30
+ GPT3Dot5Turbo0125 = "gpt-3.5-turbo-0125"
31
GPT3Dot5Turbo1106 = "gpt-3.5-turbo-1106"
32
GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613"
33
GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
@@ -75,6 +76,7 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
75
76
GPT3Dot5Turbo0301: true,
77
GPT3Dot5Turbo0613: true,
78
GPT3Dot5Turbo1106: true,
79
+ GPT3Dot5Turbo0125: true,
80
GPT3Dot5Turbo16K: true,
81
GPT3Dot5Turbo16K0613: true,
82
GPT4: true,
0 commit comments