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:
pugazhendhi-m 2025-04-25 17:06:25 +05:30 committed by GitHub
parent 586e43bd55
commit 7e76736e13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
"roo-cline": minor
---
Updates default model id for Unbound from claude 3.5 to 3.7

View file

@ -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()
})
})

View file

@ -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,