File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ const (
26
26
GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613"
27
27
GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
28
28
GPT3Dot5Turbo16K = "gpt-3.5-turbo-16k"
29
+ GPT3Dot5Turbo16K0613 = "gpt-3.5-turbo-16k-0613"
29
30
GPT3Dot5Turbo = "gpt-3.5-turbo"
30
31
GPT3TextDavinci003 = "text-davinci-003"
31
32
GPT3TextDavinci002 = "text-davinci-002"
@@ -52,16 +53,17 @@ const (
52
53
53
54
var disabledModelsForEndpoints = map [string ]map [string ]bool {
54
55
"/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 ,
65
67
},
66
68
"/chat/completions" : {
67
69
CodexCodeDavinci002 : true ,
You can’t perform that action at this time.
0 commit comments