From 6c4e2590425f04032f065e49873d220e00b129e9 Mon Sep 17 00:00:00 2001 From: Cezar Vasconcelos <97035956+vasconceloscezar@users.noreply.github.com> Date: Thu, 18 Jul 2024 20:10:32 -0300 Subject: [PATCH] feat: add gpt-4o-mini to MODEL_NAMES constant (#2813) * refactor: add gpt-4o-mini to MODEL_NAMES constant * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- .../base/langflow/base/models/openai_constants.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/backend/base/langflow/base/models/openai_constants.py b/src/backend/base/langflow/base/models/openai_constants.py index 8fffa9614..474294ced 100644 --- a/src/backend/base/langflow/base/models/openai_constants.py +++ b/src/backend/base/langflow/base/models/openai_constants.py @@ -1 +1,9 @@ -MODEL_NAMES = ["gpt-4o", "gpt-4-turbo", "gpt-4-turbo-preview", "gpt-4", "gpt-3.5-turbo", "gpt-3.5-turbo-0125"] +MODEL_NAMES = [ + "gpt-4o-mini", + "gpt-4o", + "gpt-4-turbo", + "gpt-4-turbo-preview", + "gpt-4", + "gpt-3.5-turbo", + "gpt-3.5-turbo-0125", +]