From e263913ecc1674724a2de88cf5524aaf2390aa22 Mon Sep 17 00:00:00 2001 From: liushuang Date: Fri, 2 Feb 2024 10:24:15 +0800 Subject: [PATCH] add GPT3Dot5Turbo0125 model --- completion.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/completion.go b/completion.go index 6326a72a..ab1dbd6c 100644 --- a/completion.go +++ b/completion.go @@ -27,6 +27,7 @@ const ( GPT4TurboPreview = "gpt-4-turbo-preview" GPT4VisionPreview = "gpt-4-vision-preview" GPT4 = "gpt-4" + GPT3Dot5Turbo0125 = "gpt-3.5-turbo-0125" GPT3Dot5Turbo1106 = "gpt-3.5-turbo-1106" GPT3Dot5Turbo0613 = "gpt-3.5-turbo-0613" GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301" @@ -75,6 +76,7 @@ var disabledModelsForEndpoints = map[string]map[string]bool{ GPT3Dot5Turbo0301: true, GPT3Dot5Turbo0613: true, GPT3Dot5Turbo1106: true, + GPT3Dot5Turbo0125: true, GPT3Dot5Turbo16K: true, GPT3Dot5Turbo16K0613: true, GPT4: true,