We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 194a03e commit a5fb553Copy full SHA for a5fb553
completion.go
@@ -17,6 +17,10 @@ var (
17
// GPT3 Models are designed for text-based tasks. For code-specific
18
// tasks, please refer to the Codex series of models.
19
const (
20
+ O1Mini = "o1-mini"
21
+ O1Mini20240912 = "o1-mini-2024-09-12"
22
+ O1Preview = "o1-preview"
23
+ O1Preview20240912 = "o1-preview-2024-09-12"
24
GPT432K0613 = "gpt-4-32k-0613"
25
GPT432K0314 = "gpt-4-32k-0314"
26
GPT432K = "gpt-4-32k"
@@ -83,6 +87,10 @@ const (
83
87
84
88
var disabledModelsForEndpoints = map[string]map[string]bool{
85
89
"/completions": {
90
+ O1Mini: true,
91
+ O1Mini20240912: true,
92
+ O1Preview: true,
93
+ O1Preview20240912: true,
86
94
GPT3Dot5Turbo: true,
95
GPT3Dot5Turbo0301: true,
96
GPT3Dot5Turbo0613: true,
0 commit comments