diff --git a/README.md b/README.md index db676cb07..c94e9c8d5 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ It comes packed with **world-class features** like Beam, and is praised for its ### What makes Big-AGI different: -**Intelligence**: with [Beam & Merge](https://big-agi.com/beam) for multi-model de-hallucination, native search, and bleeding-edge AI models like Opus 4.7, Nano Banana Pro, Kimi K2.5 or GPT 5.4 - +**Intelligence**: with [Beam & Merge](https://big-agi.com/beam) for multi-model de-hallucination, native search, and bleeding-edge AI models like Opus 4.7, Nano Banana Pro, Kimi K2.6 or GPT 5.4 - **Control**: with personas, data ownership, requests inspection, unlimited usage with API keys, and *no vendor lock-in* - and **Speed**: with a local-first, over-powered, zero-latency, madly optimized web app. diff --git a/src/modules/llms/server/openai/models/moonshot.models.ts b/src/modules/llms/server/openai/models/moonshot.models.ts index d31fec4c2..47f71b0a2 100644 --- a/src/modules/llms/server/openai/models/moonshot.models.ts +++ b/src/modules/llms/server/openai/models/moonshot.models.ts @@ -28,15 +28,28 @@ const _PS_Reasoning: ModelDescriptionSchema['parameterSpecs'] = [ * Moonshot AI (Kimi) models. * - models list and pricing: https://platform.kimi.ai/docs/pricing/chat (was platform.moonshot.ai - now 301 redirect) * - API docs: https://platform.kimi.ai/docs/api/chat - * - updated: 2026-04-16 + * - updated: 2026-04-20 */ const _knownMoonshotModels: ManualMappings = [ - // Kimi K2.5 Series + // Kimi K2.6 Series - Current flagship (native multimodal, thinking + non-thinking) + { + idPrefix: 'kimi-k2.6', + label: 'Kimi K2.6', + description: 'Native multimodal flagship (text, image, video inputs) with thinking and non-thinking modes. Stronger long-form coding, improved instruction compliance and self-correction. 256K context.', + contextWindow: 262144, + maxCompletionTokens: 32768, + interfaces: IF_K2_5, + parameterSpecs: _PS_Reasoning, + chatPrice: { input: 0.95, output: 4.00, cache: { cType: 'oai-ac', read: 0.16 } }, + // benchmark: { cbaElo: ... } // not available yet + }, + + // Kimi K2.5 Series - still API-listed; pricing page no longer documents it (superseded by K2.6) { idPrefix: 'kimi-k2.5', label: 'Kimi K2.5', - description: 'Most intelligent Kimi model with native multimodal architecture. Supports vision (images/videos), thinking mode, and Agent tasks. Open-source SoTA in coding and visual understanding. 256K context.', + description: 'Supports vision (images/videos), thinking mode, and Agent tasks. 256K context.', contextWindow: 262144, maxCompletionTokens: 32768, interfaces: IF_K2_5,