From 04fb610fe7a28aea30aa3b81d1fb65465e04e5a5 Mon Sep 17 00:00:00 2001 From: takatost Date: Fri, 2 Feb 2024 15:29:27 +0800 Subject: [PATCH] add gpt-3.5-turbo-0125 to trail llm list (#2354) --- api/core/hosting_configuration.py | 2 +- .../model_runtime/model_providers/openai/llm/_position.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/core/hosting_configuration.py b/api/core/hosting_configuration.py index a04eb0a5e8..067b8bc712 100644 --- a/api/core/hosting_configuration.py +++ b/api/core/hosting_configuration.py @@ -112,8 +112,8 @@ class HostingConfiguration: RestrictModel(model="gpt-3.5-turbo-16k", model_type=ModelType.LLM), RestrictModel(model="gpt-3.5-turbo-16k-0613", model_type=ModelType.LLM), RestrictModel(model="gpt-3.5-turbo-0613", model_type=ModelType.LLM), + RestrictModel(model="gpt-3.5-turbo-0125", model_type=ModelType.LLM), RestrictModel(model="text-davinci-003", model_type=ModelType.LLM), - RestrictModel(model="whisper-1", model_type=ModelType.SPEECH2TEXT), ] ) quotas.append(trial_quota) diff --git a/api/core/model_runtime/model_providers/openai/llm/_position.yaml b/api/core/model_runtime/model_providers/openai/llm/_position.yaml index ceb7d7cd77..cc3f3a6d94 100644 --- a/api/core/model_runtime/model_providers/openai/llm/_position.yaml +++ b/api/core/model_runtime/model_providers/openai/llm/_position.yaml @@ -4,10 +4,10 @@ - gpt-4-1106-preview - gpt-4-0125-preview - gpt-4-vision-preview -- gpt-3.5-turbo-0125 - gpt-3.5-turbo - gpt-3.5-turbo-16k - gpt-3.5-turbo-16k-0613 +- gpt-3.5-turbo-0125 - gpt-3.5-turbo-1106 - gpt-3.5-turbo-0613 - gpt-3.5-turbo-instruct