mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Changed default model to sonnet 3.5
This commit is contained in:
parent
7710df85f5
commit
ddc6b9c63f
1 changed files with 8 additions and 6 deletions
|
|
@ -651,12 +651,14 @@ export const mistralModels = {
|
|||
} as const satisfies Record<string, ModelInfo>
|
||||
|
||||
// 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,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue