Skip to content

Commit bc8cdd3

Browse files
authored
add GPT3Dot5Turbo0125 model (#648)
1 parent 06ff541 commit bc8cdd3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

completion.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const (
2727
GPT4TurboPreview = "gpt-4-turbo-preview"
2828
GPT4VisionPreview = "gpt-4-vision-preview"
2929
GPT4 = "gpt-4"
30+
GPT3Dot5Turbo0125 = "gpt-3.5-turbo-0125"
3031
GPT3Dot5Turbo1106 = "gpt-3.5-turbo-1106"
3132
GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613"
3233
GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
@@ -75,6 +76,7 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
7576
GPT3Dot5Turbo0301: true,
7677
GPT3Dot5Turbo0613: true,
7778
GPT3Dot5Turbo1106: true,
79+
GPT3Dot5Turbo0125: true,
7880
GPT3Dot5Turbo16K: true,
7981
GPT3Dot5Turbo16K0613: true,
8082
GPT4: true,

0 commit comments

Comments
 (0)