core: bump ai sdk packages for google, google vertex, anthropic, bedrock, and provider utils (#14318)

This commit is contained in:
Aiden Cline 2026-02-19 12:35:51 -06:00 committed by GitHub
commit 7e35d0c610
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 58 additions and 43 deletions

View file

@ -2153,12 +2153,16 @@ describe("ProviderTransform.variants", () => {
const result = ProviderTransform.variants(model)
expect(Object.keys(result)).toEqual(["low", "high"])
expect(result.low).toEqual({
includeThoughts: true,
thinkingLevel: "low",
thinkingConfig: {
includeThoughts: true,
thinkingLevel: "low",
},
})
expect(result.high).toEqual({
includeThoughts: true,
thinkingLevel: "high",
thinkingConfig: {
includeThoughts: true,
thinkingLevel: "high",
},
})
})
})
@ -2223,12 +2227,10 @@ describe("ProviderTransform.variants", () => {
const result = ProviderTransform.variants(model)
expect(Object.keys(result)).toEqual(["none", "low", "medium", "high"])
expect(result.none).toEqual({
includeThoughts: true,
thinkingLevel: "none",
reasoningEffort: "none",
})
expect(result.low).toEqual({
includeThoughts: true,
thinkingLevel: "low",
reasoningEffort: "low",
})
})
})