From 47a4776457a16af54b230051046fd59bfb7f74f4 Mon Sep 17 00:00:00 2001 From: Nick Hale <4175918+njhale@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:53:04 -0400 Subject: [PATCH] chore: add gpt-4-turbo constants Signed-off-by: Nick Hale <4175918+njhale@users.noreply.github.com> --- models.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/models.go b/models.go index a43861f..9b0e11c 100644 --- a/models.go +++ b/models.go @@ -15,6 +15,8 @@ const ( GPT432K = "gpt-4-32k" GPT40613 = "gpt-4-0613" GPT40314 = "gpt-4-0314" + GPT4Turbo = "gpt-4-turbo" + GPT4Turbo20240409 = "gpt-4-turbo-2024-04-09" GPT4Turbo0125 = "gpt-4-0125-preview" GPT4Turbo1106 = "gpt-4-1106-preview" GPT4TurboPreview = "gpt-4-turbo-preview"