diff --git a/src/shared/api.ts b/src/shared/api.ts index b939f0818f..0e3d1b4e33 100644 --- a/src/shared/api.ts +++ b/src/shared/api.ts @@ -593,8 +593,7 @@ export const deepSeekModels = { supportsPromptCache: false, inputPrice: 0.014, // $0.014 per million tokens outputPrice: 0.28, // $0.28 per million tokens - description: - "DeepSeek-V3 achieves a significant breakthrough in inference speed over previous models. It tops the leaderboard among open-source models and rivals the most advanced closed-source models globally.", + description: `DeepSeek-V3 achieves a significant breakthrough in inference speed over previous models. It tops the leaderboard among open-source models and rivals the most advanced closed-source models globally.`, }, "deepseek-reasoner": { maxTokens: 8192, @@ -603,7 +602,7 @@ export const deepSeekModels = { supportsPromptCache: false, inputPrice: 0.55, // $0.55 per million tokens outputPrice: 2.19, // $2.19 per million tokens - description: "DeepSeek-R1 achieves performance comparable to OpenAI-o1 across math, code, and reasoning tasks.", + description: `DeepSeek-R1 achieves performance comparable to OpenAI-o1 across math, code, and reasoning tasks.`, }, } as const satisfies Record @@ -628,15 +627,7 @@ export const mistralModels = { } as const satisfies Record // Unbound Security -// export type UnboundModelId = keyof typeof unboundModels export const unboundDefaultModelId = "openai/gpt-4o" -// export const unboundModels = { -// "anthropic/claude-3-5-sonnet-20241022": anthropicModels["claude-3-5-sonnet-20241022"], -// "openai/gpt-4o": openAiNativeModels["gpt-4o"], -// "deepseek/deepseek-chat": deepSeekModels["deepseek-chat"], -// "deepseek/deepseek-reasoner": deepSeekModels["deepseek-reasoner"], -// "mistral/codestral-latest": mistralModels["codestral-latest"], -// } as const satisfies Record export const unboundDefaultModelInfo: ModelInfo = { maxTokens: 8192, contextWindow: 64_000,