From f5c08070d9f0a00079dfd6815c4999358d258607 Mon Sep 17 00:00:00 2001 From: Garfield Dai Date: Mon, 5 Feb 2024 14:44:49 +0800 Subject: [PATCH] feat: add openai paid llm model. (#2392) --- api/core/hosting_configuration.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/core/hosting_configuration.py b/api/core/hosting_configuration.py index 067b8bc712..b2917682dc 100644 --- a/api/core/hosting_configuration.py +++ b/api/core/hosting_configuration.py @@ -125,12 +125,13 @@ class HostingConfiguration: RestrictModel(model="gpt-4-turbo-preview", model_type=ModelType.LLM), RestrictModel(model="gpt-4-32k", model_type=ModelType.LLM), RestrictModel(model="gpt-4-1106-preview", model_type=ModelType.LLM), + RestrictModel(model="gpt-4-0125-preview", model_type=ModelType.LLM), RestrictModel(model="gpt-3.5-turbo", model_type=ModelType.LLM), 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-1106", model_type=ModelType.LLM), - RestrictModel(model="gpt-4-0125-preview", 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="gpt-3.5-turbo-instruct", model_type=ModelType.LLM), RestrictModel(model="text-davinci-003", model_type=ModelType.LLM), ]