Skip to content

Commit 7e76a68

Browse files
Add 16k 0613 model (#365)
* add 16k_0613 model * add 16k_0613 model * add model:
1 parent 646989c commit 7e76a68

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

completion.go

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const (
2626
GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613"
2727
GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
2828
GPT3Dot5Turbo16K = "gpt-3.5-turbo-16k"
29+
GPT3Dot5Turbo16K0613 = "gpt-3.5-turbo-16k-0613"
2930
GPT3Dot5Turbo = "gpt-3.5-turbo"
3031
GPT3TextDavinci003 = "text-davinci-003"
3132
GPT3TextDavinci002 = "text-davinci-002"
@@ -52,16 +53,17 @@ const (
5253

5354
var disabledModelsForEndpoints = map[string]map[string]bool{
5455
"/completions": {
55-
GPT3Dot5Turbo: true,
56-
GPT3Dot5Turbo0301: true,
57-
GPT3Dot5Turbo0613: true,
58-
GPT3Dot5Turbo16K: true,
59-
GPT4: true,
60-
GPT40314: true,
61-
GPT40613: true,
62-
GPT432K: true,
63-
GPT432K0314: true,
64-
GPT432K0613: true,
56+
GPT3Dot5Turbo: true,
57+
GPT3Dot5Turbo0301: true,
58+
GPT3Dot5Turbo0613: true,
59+
GPT3Dot5Turbo16K: true,
60+
GPT3Dot5Turbo16K0613: true,
61+
GPT4: true,
62+
GPT40314: true,
63+
GPT40613: true,
64+
GPT432K: true,
65+
GPT432K0314: true,
66+
GPT432K0613: true,
6567
},
6668
"/chat/completions": {
6769
CodexCodeDavinci002: true,

0 commit comments

Comments
 (0)