Skip to content

Commit 4db2710

Browse files
committed
Updates default model for Unbound
1 parent 586e43b commit 4db2710

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/api/providers/__tests__/unbound.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ describe("UnboundHandler", () => {
294294
unboundModelInfo: undefined,
295295
})
296296
const modelInfo = handlerWithInvalidModel.getModel()
297-
expect(modelInfo.id).toBe("anthropic/claude-3-5-sonnet-20241022") // Default model
297+
expect(modelInfo.id).toBe("anthropic/claude-3-7-sonnet-20250219") // Default model
298298
expect(modelInfo.info).toBeDefined()
299299
})
300300
})

src/shared/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@ export const mistralModels = {
10871087

10881088
// Unbound Security
10891089
// https://www.unboundsecurity.ai/ai-gateway
1090-
export const unboundDefaultModelId = "anthropic/claude-3-5-sonnet-20241022"
1090+
export const unboundDefaultModelId = "anthropic/claude-3-7-sonnet-20250219"
10911091
export const unboundDefaultModelInfo: ModelInfo = {
10921092
maxTokens: 8192,
10931093
contextWindow: 200_000,

0 commit comments

Comments
 (0)