From 7276cd4a11054bee40aa2755ac287545b9c0e48e Mon Sep 17 00:00:00 2001 From: Roo Code Date: Fri, 8 May 2026 22:17:10 +0000 Subject: [PATCH] feat: add Bedrock models minimax.minimax-m2.5 and moonshotai.kimi-k2.5 --- packages/types/src/providers/bedrock.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages/types/src/providers/bedrock.ts b/packages/types/src/providers/bedrock.ts index 9ea52bced89..b32dce4492c 100644 --- a/packages/types/src/providers/bedrock.ts +++ b/packages/types/src/providers/bedrock.ts @@ -432,6 +432,15 @@ export const bedrockModels = { outputPrice: 2.5, description: "Kimi K2 Thinking (1T parameter MoE model with 32B active parameters)", }, + "moonshotai.kimi-k2.5": { + maxTokens: 32_000, + contextWindow: 262_144, + supportsImages: false, + supportsPromptCache: false, + inputPrice: 0.6, + outputPrice: 2.5, + description: "Kimi K2.5 (Moonshot AI)", + }, "minimax.minimax-m2": { maxTokens: 16_384, contextWindow: 196_608, @@ -442,6 +451,15 @@ export const bedrockModels = { outputPrice: 1.2, description: "MiniMax M2 (230B parameter MoE model with 10B active parameters)", }, + "minimax.minimax-m2.5": { + maxTokens: 16_384, + contextWindow: 196_608, + supportsImages: false, + supportsPromptCache: false, + inputPrice: 0.3, + outputPrice: 1.2, + description: "MiniMax M2.5", + }, "qwen.qwen3-next-80b-a3b": { maxTokens: 8192, contextWindow: 262_144,