From 3697bf4a971ae819e554b6825aab9cf7078f4a6a Mon Sep 17 00:00:00 2001 From: Matt Trefilek <54865574+mtrefilek@users.noreply.github.com> Date: Wed, 30 Nov 2022 03:07:31 -0600 Subject: [PATCH] Add new text-davinci-003 model to constants (#35) --- completion.go | 1 + 1 file changed, 1 insertion(+) diff --git a/completion.go b/completion.go index 93bfcf3..38595ff 100644 --- a/completion.go +++ b/completion.go @@ -12,6 +12,7 @@ import ( // GPT3 Models are designed for text-based tasks. For code-specific // tasks, please refer to the Codex series of models. const ( + GPT3TextDavinci003 = "text-davinci-003" GPT3TextDavinci002 = "text-davinci-002" GPT3TextCurie001 = "text-curie-001" GPT3TextBabbage001 = "text-babbage-001"