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
parent 5364ab74a2
commit 7e35d0c610
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",
})
})
})