Reverts changes

This commit is contained in:
Pugazhendhi 2025-02-06 12:53:24 +05:30
parent 32f91b6291
commit 915d173720

View file

@ -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<string, ModelInfo>
@ -628,15 +627,7 @@ export const mistralModels = {
} as const satisfies Record<string, ModelInfo>
// 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<string, ModelInfo>
export const unboundDefaultModelInfo: ModelInfo = {
maxTokens: 8192,
contextWindow: 64_000,