Selaa lähdekoodia

Updates default model for Unbound (#2944)

* Updates default model for Unbound

* Adds changeset

---------

Co-authored-by: Pugazhendhi <[email protected]>
pugazhendhi-m 8 kuukautta sitten
vanhempi
sitoutus
7e76736e13

+ 5 - 0
.changeset/lazy-rats-end.md

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

+ 1 - 1
src/api/providers/__tests__/unbound.test.ts

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

+ 1 - 1
src/shared/api.ts

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