Skip to content

Commit ddc6b9c

Browse files
committed
Changed default model to sonnet 3.5
1 parent 7710df8 commit ddc6b9c

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/shared/api.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -651,12 +651,14 @@ export const mistralModels = {
651651
} as const satisfies Record<string, ModelInfo>
652652

653653
// Unbound Security
654-
export const unboundDefaultModelId = "openai/gpt-4o"
654+
export const unboundDefaultModelId = "anthropic/claude-3-5-sonnet-20241022"
655655
export const unboundDefaultModelInfo: ModelInfo = {
656656
maxTokens: 8192,
657-
contextWindow: 64_000,
658-
supportsImages: false,
659-
supportsPromptCache: false,
660-
inputPrice: 0,
661-
outputPrice: 0,
657+
contextWindow: 200_000,
658+
supportsImages: true,
659+
supportsPromptCache: true,
660+
inputPrice: 3.0,
661+
outputPrice: 15.0,
662+
cacheWritesPrice: 3.75,
663+
cacheReadsPrice: 0.3,
662664
}

0 commit comments

Comments
 (0)