@@ -17,29 +17,42 @@ var (
17
17
// GPT3 Models are designed for text-based tasks. For code-specific
18
18
// tasks, please refer to the Codex series of models.
19
19
const (
20
- GPT432K0613 = "gpt-4-32k-0613"
21
- GPT432K0314 = "gpt-4-32k-0314"
22
- GPT432K = "gpt-4-32k"
23
- GPT40613 = "gpt-4-0613"
24
- GPT40314 = "gpt-4-0314"
25
- GPT4 = "gpt-4"
26
- GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613"
27
- GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
28
- GPT3Dot5Turbo16K = "gpt-3.5-turbo-16k"
29
- GPT3Dot5Turbo16K0613 = "gpt-3.5-turbo-16k-0613"
30
- GPT3Dot5Turbo = "gpt-3.5-turbo"
31
- GPT3TextDavinci003 = "text-davinci-003"
32
- GPT3TextDavinci002 = "text-davinci-002"
33
- GPT3TextCurie001 = "text-curie-001"
34
- GPT3TextBabbage001 = "text-babbage-001"
35
- GPT3TextAda001 = "text-ada-001"
36
- GPT3TextDavinci001 = "text-davinci-001"
20
+ GPT432K0613 = "gpt-4-32k-0613"
21
+ GPT432K0314 = "gpt-4-32k-0314"
22
+ GPT432K = "gpt-4-32k"
23
+ GPT40613 = "gpt-4-0613"
24
+ GPT40314 = "gpt-4-0314"
25
+ GPT4 = "gpt-4"
26
+ GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613"
27
+ GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
28
+ GPT3Dot5Turbo16K = "gpt-3.5-turbo-16k"
29
+ GPT3Dot5Turbo16K0613 = "gpt-3.5-turbo-16k-0613"
30
+ GPT3Dot5Turbo = "gpt-3.5-turbo"
31
+ GPT3Dot5TurboInstruct = "gpt-3.5-turbo-instruct"
32
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
33
+ GPT3TextDavinci003 = "text-davinci-003"
34
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
35
+ GPT3TextDavinci002 = "text-davinci-002"
36
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
37
+ GPT3TextCurie001 = "text-curie-001"
38
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
39
+ GPT3TextBabbage001 = "text-babbage-001"
40
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
41
+ GPT3TextAda001 = "text-ada-001"
42
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
43
+ GPT3TextDavinci001 = "text-davinci-001"
44
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
37
45
GPT3DavinciInstructBeta = "davinci-instruct-beta"
38
46
GPT3Davinci = "davinci"
39
- GPT3CurieInstructBeta = "curie-instruct-beta"
40
- GPT3Curie = "curie"
41
- GPT3Ada = "ada"
42
- GPT3Babbage = "babbage"
47
+ GPT3Davinci002 = "davinci-002"
48
+ // Deprecated: Will be shut down on January 04, 2024. Use gpt-3.5-turbo-instruct instead.
49
+ GPT3CurieInstructBeta = "curie-instruct-beta"
50
+ GPT3Curie = "curie"
51
+ GPT3Curie002 = "curie-002"
52
+ GPT3Ada = "ada"
53
+ GPT3Ada002 = "ada-002"
54
+ GPT3Babbage = "babbage"
55
+ GPT3Babbage002 = "babbage-002"
43
56
)
44
57
45
58
// Codex Defines the models provided by OpenAI.
0 commit comments