From ee9f16688e953a16994a7edefa259cc84dee80a5 Mon Sep 17 00:00:00 2001 From: Laurel Orr <57237365+lorr1@users.noreply.github.com> Date: Sat, 8 Apr 2023 13:46:47 -0700 Subject: [PATCH] chore: reformat openaichat (#72) --- manifest/clients/openaichat.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/manifest/clients/openaichat.py b/manifest/clients/openaichat.py index d677392..b6ebe36 100644 --- a/manifest/clients/openaichat.py +++ b/manifest/clients/openaichat.py @@ -10,11 +10,7 @@ from manifest.request import LMRequest logger = logging.getLogger(__name__) # List from https://platform.openai.com/docs/models/model-endpoint-compatibility -OPENAICHAT_ENGINES = { - "gpt-3.5-turbo", - "gpt-4", - "gpt-4-32k" -} +OPENAICHAT_ENGINES = {"gpt-3.5-turbo", "gpt-4", "gpt-4-32k"} class OpenAIChatClient(OpenAIClient):