From 838bf050fe36f3b4b1220031921e31097f840b29 Mon Sep 17 00:00:00 2001 From: Laurel Orr Date: Fri, 12 Jan 2024 11:24:11 -0800 Subject: [PATCH] add gpt4 turbo --- manifest/clients/openai_chat.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/manifest/clients/openai_chat.py b/manifest/clients/openai_chat.py index 697e78b..654d3ef 100644 --- a/manifest/clients/openai_chat.py +++ b/manifest/clients/openai_chat.py @@ -10,7 +10,13 @@ logger = logging.getLogger(__name__) # List from https://platform.openai.com/docs/models/model-endpoint-compatibility -OPENAICHAT_ENGINES = {"gpt-3.5-turbo", "gpt-3.5-turbo-16k", "gpt-4", "gpt-4-32k"} +OPENAICHAT_ENGINES = { + "gpt-3.5-turbo", + "gpt-3.5-turbo-16k", + "gpt-4", + "gpt-4-32k", + "gpt-4-1106-preview", +} class OpenAIChatClient(OpenAIClient):