From 3a2a6e96fdaecba23b2b94ad31b873874075fc6b Mon Sep 17 00:00:00 2001 From: nai-degen Date: Tue, 13 Jun 2023 16:24:34 -0500 Subject: [PATCH] adds new OpenAI June 2023 models --- src/proxy/openai.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/proxy/openai.ts b/src/proxy/openai.ts index 86ac2ce..6060416 100644 --- a/src/proxy/openai.ts +++ b/src/proxy/openai.ts @@ -30,11 +30,16 @@ function getModelsResponse() { const gptVariants = [ "gpt-4", + "gpt-4-0613", "gpt-4-0314", "gpt-4-32k", + "gpt-4-32k-0613", "gpt-4-32k-0314", "gpt-3.5-turbo", "gpt-3.5-turbo-0301", + "gpt-3.5-turbo-0613", + "gpt-3.5-turbo-16k", + "gpt-3.5-turbo-16k-0613", ]; const gpt4Available = keyPool.list().filter((key) => {