We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7710df8 commit ddc6b9cCopy full SHA for ddc6b9c
src/shared/api.ts
@@ -651,12 +651,14 @@ export const mistralModels = {
651
} as const satisfies Record<string, ModelInfo>
652
653
// Unbound Security
654
-export const unboundDefaultModelId = "openai/gpt-4o"
+export const unboundDefaultModelId = "anthropic/claude-3-5-sonnet-20241022"
655
export const unboundDefaultModelInfo: ModelInfo = {
656
maxTokens: 8192,
657
- contextWindow: 64_000,
658
- supportsImages: false,
659
- supportsPromptCache: false,
660
- inputPrice: 0,
661
- outputPrice: 0,
+ contextWindow: 200_000,
+ supportsImages: true,
+ supportsPromptCache: true,
+ inputPrice: 3.0,
+ outputPrice: 15.0,
662
+ cacheWritesPrice: 3.75,
663
+ cacheReadsPrice: 0.3,
664
}
0 commit comments