diff --git a/frontend/app/config/components/ModelConfig.tsx b/frontend/app/config/components/ModelConfig.tsx index 727f5b4c8..0a97c13d8 100644 --- a/frontend/app/config/components/ModelConfig.tsx +++ b/frontend/app/config/components/ModelConfig.tsx @@ -31,8 +31,6 @@ export const ModelConfig = ({ const defineMaxTokens = (model: Model | PaidModels): number => { //At the moment is evaluating only models from OpenAI switch (model) { - case "gpt-3.5-turbo": - return 3000; case "gpt-3.5-turbo-0613": return 3000; case "gpt-3.5-turbo-16k": diff --git a/frontend/lib/context/BrainConfigProvider/types.ts b/frontend/lib/context/BrainConfigProvider/types.ts index 98cef4f3c..957624b0a 100644 --- a/frontend/lib/context/BrainConfigProvider/types.ts +++ b/frontend/lib/context/BrainConfigProvider/types.ts @@ -21,12 +21,10 @@ export type ConfigContext = { // export const openAiModels = ["gpt-3.5-turbo", "gpt-4"] as const; ## TODO activate GPT4 when not in demo mode export const openAiModels = [ - // "gpt-3.5-turbo", "gpt-3.5-turbo-0613", "gpt-3.5-turbo-16k", ] as const; export const openAiPaidModels = [ - // "gpt-3.5-turbo", "gpt-3.5-turbo-0613", "gpt-3.5-turbo-16k", "gpt-4",