mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Updates default model for Unbound (#2944)
* Updates default model for Unbound * Adds changeset --------- Co-authored-by: Pugazhendhi <pugazhendhi@unboundsecurity.ai>
This commit is contained in:
parent
586e43bd55
commit
7e76736e13
3 changed files with 7 additions and 2 deletions
5
.changeset/lazy-rats-end.md
Normal file
5
.changeset/lazy-rats-end.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"roo-cline": minor
|
||||
---
|
||||
|
||||
Updates default model id for Unbound from claude 3.5 to 3.7
|
||||
|
|
@ -294,7 +294,7 @@ describe("UnboundHandler", () => {
|
|||
unboundModelInfo: undefined,
|
||||
})
|
||||
const modelInfo = handlerWithInvalidModel.getModel()
|
||||
expect(modelInfo.id).toBe("anthropic/claude-3-5-sonnet-20241022") // Default model
|
||||
expect(modelInfo.id).toBe("anthropic/claude-3-7-sonnet-20250219") // Default model
|
||||
expect(modelInfo.info).toBeDefined()
|
||||
})
|
||||
})
|
||||
|
|
|
|||
|
|
@ -1087,7 +1087,7 @@ export const mistralModels = {
|
|||
|
||||
// Unbound Security
|
||||
// https://www.unboundsecurity.ai/ai-gateway
|
||||
export const unboundDefaultModelId = "anthropic/claude-3-5-sonnet-20241022"
|
||||
export const unboundDefaultModelId = "anthropic/claude-3-7-sonnet-20250219"
|
||||
export const unboundDefaultModelInfo: ModelInfo = {
|
||||
maxTokens: 8192,
|
||||
contextWindow: 200_000,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue