From f222e8341c49be4a60d7de65f9c031315a0507d5 Mon Sep 17 00:00:00 2001 From: Pugazhendhi Date: Fri, 24 Jan 2025 19:01:58 +0530 Subject: [PATCH] Added mistral and deepseek models --- src/shared/api.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/shared/api.ts b/src/shared/api.ts index 8ba1730..3eccf4c 100644 --- a/src/shared/api.ts +++ b/src/shared/api.ts @@ -601,6 +601,9 @@ export const mistralModels = { export type UnboundModelId = keyof typeof unboundModels export const unboundDefaultModelId = "gpt-4o" export const unboundModels = { - "gpt-4o": openAiNativeModels["gpt-4o"], "claude-3-5-sonnet-20241022": anthropicModels["claude-3-5-sonnet-20241022"], + "gpt-4o": openAiNativeModels["gpt-4o"], + "deepseek-chat": deepSeekModels["deepseek-chat"], + "deepseek-reasoner": deepSeekModels["deepseek-reasoner"], + "codestral-latest": mistralModels["codestral-latest"], } as const satisfies Record