From ddc6b9c63f045a3eee4baa4e4857556cc7769759 Mon Sep 17 00:00:00 2001 From: Pugazhendhi Date: Fri, 7 Feb 2025 18:57:58 +0530 Subject: [PATCH] Changed default model to sonnet 3.5 --- src/shared/api.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/shared/api.ts b/src/shared/api.ts index ee484e72f8..77c73a8c36 100644 --- a/src/shared/api.ts +++ b/src/shared/api.ts @@ -651,12 +651,14 @@ export const mistralModels = { } as const satisfies Record // Unbound Security -export const unboundDefaultModelId = "openai/gpt-4o" +export const unboundDefaultModelId = "anthropic/claude-3-5-sonnet-20241022" export const unboundDefaultModelInfo: ModelInfo = { maxTokens: 8192, - contextWindow: 64_000, - supportsImages: false, - supportsPromptCache: false, - inputPrice: 0, - outputPrice: 0, + contextWindow: 200_000, + supportsImages: true, + supportsPromptCache: true, + inputPrice: 3.0, + outputPrice: 15.0, + cacheWritesPrice: 3.75, + cacheReadsPrice: 0.3, }