Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit d64a392

Browse files
committed
feat: add kimi-k2.5 model to Moonshot provider
- Add new kimi-k2.5 model with 262k context window - Input price: /bin/sh.60/1M tokens (cache miss), /bin/sh.10/1M tokens (cache hit) - Output price: .00/1M tokens - Supports prompt caching
1 parent 6b50c44 commit d64a392

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

packages/types/src/providers/moonshot.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,17 @@ export const moonshotModels = {
5353
defaultTemperature: 1.0,
5454
description: `The kimi-k2-thinking model is a general-purpose agentic reasoning model developed by Moonshot AI. Thanks to its strength in deep reasoning and multi-turn tool use, it can solve even the hardest problems.`,
5555
},
56+
"kimi-k2.5": {
57+
maxTokens: 16_384,
58+
contextWindow: 262_144,
59+
supportsImages: false,
60+
supportsPromptCache: true,
61+
inputPrice: 0.6, // $0.60 per million tokens (cache miss)
62+
outputPrice: 3.0, // $3.00 per million tokens
63+
cacheReadsPrice: 0.1, // $0.10 per million tokens (cache hit)
64+
description:
65+
"Kimi K2.5 is the latest generation of Moonshot AI's Kimi series, featuring improved reasoning capabilities and enhanced performance across diverse tasks.",
66+
},
5667
} as const satisfies Record<string, ModelInfo>
5768

5869
export const MOONSHOT_DEFAULT_TEMPERATURE = 0.6

0 commit comments

Comments
 (0)