File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ const (
22
22
GPT432K = "gpt-4-32k"
23
23
GPT40613 = "gpt-4-0613"
24
24
GPT40314 = "gpt-4-0314"
25
- GPT4TurboPreview = "gpt-4-1106-preview"
25
+ GPT4Turbo0125 = "gpt-4-0125-preview"
26
+ GPT4Turbo1106 = "gpt-4-1106-preview"
27
+ GPT4TurboPreview = "gpt-4-turbo-preview"
26
28
GPT4VisionPreview = "gpt-4-vision-preview"
27
29
GPT4 = "gpt-4"
28
30
GPT3Dot5Turbo1106 = "gpt-3.5-turbo-1106"
@@ -78,6 +80,8 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
78
80
GPT4 : true ,
79
81
GPT4TurboPreview : true ,
80
82
GPT4VisionPreview : true ,
83
+ GPT4Turbo1106 : true ,
84
+ GPT4Turbo0125 : true ,
81
85
GPT40314 : true ,
82
86
GPT40613 : true ,
83
87
GPT432K : true ,
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ const (
34
34
BabbageCodeSearchCode EmbeddingModel = "code-search-babbage-code-001"
35
35
BabbageCodeSearchText EmbeddingModel = "code-search-babbage-text-001"
36
36
37
- AdaEmbeddingV2 EmbeddingModel = "text-embedding-ada-002"
37
+ AdaEmbeddingV2 EmbeddingModel = "text-embedding-ada-002"
38
+ SmallEmbedding3 EmbeddingModel = "text-embedding-3-small"
39
+ LargeEmbedding3 EmbeddingModel = "text-embedding-3-large"
38
40
)
39
41
40
42
// Embedding is a special format of data representation that can be easily utilized by machine
You can’t perform that action at this time.
0 commit comments