From 84106655c02e6c3fee23e3b6663eba865a70fe90 Mon Sep 17 00:00:00 2001 From: csuzhang Date: Tue, 18 Apr 2023 19:06:19 +0800 Subject: [PATCH] feat: fix gpt-4 model name --- gpt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt.go b/gpt.go index 02ac75c..e515ffb 100644 --- a/gpt.go +++ b/gpt.go @@ -28,7 +28,7 @@ const ( ) const ( - GPT4 = "gpt4" // GPT4 GPT-4 + GPT4 = "gpt-4" // GPT4 GPT-4 GPT3Dot5Turbo = "gpt-3.5-turbo" // GPT3Dot5Turbo GPT-3.5 Turbo GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301" // GPT3Dot5Turbo0301 GPT-3.5 Turbo 0301 TextSimilarityAda001 = "text-similarity-ada-001" // TextSimilarityAda001 Text Similarity Ada 001