We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c47ddfc commit 6c52952Copy full SHA for 6c52952
completion.go
@@ -22,7 +22,10 @@ const (
22
GPT432K = "gpt-4-32k"
23
GPT40613 = "gpt-4-0613"
24
GPT40314 = "gpt-4-0314"
25
+ GPT4TurboPreview = "gpt-4-1106-preview"
26
+ GPT4VisionPreview = "gpt-4-vision-preview"
27
GPT4 = "gpt-4"
28
+ GPT3Dot5Turbo1106 = "gpt-3.5-turbo-1106"
29
GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613"
30
GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
31
GPT3Dot5Turbo16K = "gpt-3.5-turbo-16k"
@@ -69,9 +72,12 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
69
72
GPT3Dot5Turbo: true,
70
73
GPT3Dot5Turbo0301: true,
71
74
GPT3Dot5Turbo0613: true,
75
+ GPT3Dot5Turbo1106: true,
76
GPT3Dot5Turbo16K: true,
77
GPT3Dot5Turbo16K0613: true,
78
GPT4: true,
79
+ GPT4TurboPreview: true,
80
+ GPT4VisionPreview: true,
81
GPT40314: true,
82
GPT40613: true,
83
GPT432K: true,
0 commit comments