feat(opencode): use adaptive thinking effort for kimi family on anthr… (#37696)

Co-authored-by: liqiping <liqiping@msh.team>
Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
This commit is contained in:
Qiping Li
2026-07-20 12:54:00 +08:00
committed by GitHub
parent cd46f22d51
commit 20a3a2138e
2 changed files with 144 additions and 8 deletions
@@ -3029,7 +3029,13 @@ describe("ProviderTransform.temperature - Cohere North", () => {
describe("ProviderTransform.reasoningVariants", () => {
const model = (reasoning_options: ModelsDev.Model["reasoning_options"]) => ({ reasoning_options }) as ModelsDev.Model
const target = (npm: string, id = "test-model") =>
({ id, api: { id, npm, url: "" }, capabilities: { reasoning: true }, limit: { output: 64_000 } }) as any
({
id,
providerID: "test",
api: { id, npm, url: "" },
capabilities: { reasoning: true },
limit: { output: 64_000 },
}) as any
test("respects explicitly empty reasoning options", () => {
expect(ProviderTransform.reasoningVariants(model([]), target("@ai-sdk/openai"))).toEqual({})
@@ -3119,6 +3125,19 @@ describe("ProviderTransform.reasoningVariants", () => {
).toEqual({ max: { effort: "max" } })
})
test("maps Kimi effort metadata to adaptive thinking", () => {
expect(
ProviderTransform.reasoningVariants(
model([{ type: "effort", values: ["low", "high", "max"] }]),
target("@ai-sdk/anthropic", "kimi-k3"),
),
).toEqual({
low: { thinking: { type: "adaptive", display: "summarized" }, effort: "low" },
high: { thinking: { type: "adaptive", display: "summarized" }, effort: "high" },
max: { thinking: { type: "adaptive", display: "summarized" }, effort: "max" },
})
})
test("uses adaptive reasoning config for Anthropic models on Bedrock", () => {
expect(
ProviderTransform.reasoningVariants(
@@ -5136,3 +5155,95 @@ describe("ProviderTransform.providerOptions - ai-gateway-provider", () => {
expect(result).toEqual({ openaiCompatible: { reasoningEffort: "high" } })
})
})
describe("ProviderTransform.options - kimi family adaptive thinking", () => {
const createModel = (overrides: Record<string, any> = {}) =>
({
id: "moonshotai/kimi-k2-thinking",
providerID: "moonshotai",
api: {
id: "kimi-k2-thinking",
url: "https://api.moonshot.ai/anthropic",
npm: "@ai-sdk/anthropic",
},
name: "Kimi K2 Thinking",
capabilities: {
temperature: true,
reasoning: true,
attachment: false,
toolcall: true,
input: { text: true, audio: false, image: false, video: false, pdf: false },
output: { text: true, audio: false, image: false, video: false, pdf: false },
interleaved: false,
},
cost: { input: 0.001, output: 0.002, cache: { read: 0.0001, write: 0.0002 } },
limit: { context: 262144, output: 262144 },
status: "active",
options: {},
headers: {},
...overrides,
}) as any
test("uses adaptive thinking with effort instead of budget tokens", () => {
const result = ProviderTransform.options({ model: createModel(), sessionID: "s1", providerOptions: {} })
expect(result.thinking).toEqual({ type: "adaptive", display: "summarized" })
expect(result.effort).toBe("high")
expect(JSON.stringify(result)).not.toContain("budgetTokens")
})
test("uses adaptive thinking through Google Vertex Anthropic", () => {
const model = createModel()
model.api.npm = "@ai-sdk/google-vertex/anthropic"
const result = ProviderTransform.options({ model, sessionID: "s1", providerOptions: {} })
expect(result.thinking).toEqual({ type: "adaptive", display: "summarized" })
expect(result.effort).toBe("high")
})
test("provides adaptive effort variants without models.dev metadata", () => {
expect(ProviderTransform.variants(createModel())).toEqual(
Object.fromEntries(
["low", "medium", "high", "xhigh", "max"].map((effort) => [
effort,
{ thinking: { type: "adaptive", display: "summarized" }, effort },
]),
),
)
const model = createModel()
model.api.npm = "@ai-sdk/openai-compatible"
expect(ProviderTransform.variants(model)).toEqual({})
})
test("does not enable thinking for kimi models without reasoning capability", () => {
const model = createModel()
model.capabilities.reasoning = false
const result = ProviderTransform.options({ model, sessionID: "s1", providerOptions: {} })
expect(result.thinking).toBeUndefined()
})
test("does not set thinking defaults for non-kimi anthropic models", () => {
const model = createModel({
id: "anthropic/claude-sonnet-4-5",
providerID: "anthropic",
api: {
id: "claude-sonnet-4-5",
url: "https://api.anthropic.com",
npm: "@ai-sdk/anthropic",
},
})
const result = ProviderTransform.options({ model, sessionID: "s1", providerOptions: {} })
expect(result.thinking).toBeUndefined()
expect(result.effort).toBeUndefined()
})
test("does not set adaptive thinking for kimi on openai-compatible", () => {
const model = createModel()
model.api = {
id: "kimi-k2-thinking",
url: "https://api.moonshot.ai/v1",
npm: "@ai-sdk/openai-compatible",
}
const result = ProviderTransform.options({ model, sessionID: "s1", providerOptions: {} })
expect(result.thinking).toBeUndefined()
})
})