From 92620847ab5823e20e0fe4a9a47cec5d3bcd2762 Mon Sep 17 00:00:00 2001 From: 0xGingi <0xgingi@0xgingi.com> Date: Tue, 27 Jan 2026 05:35:50 -0500 Subject: [PATCH] add Kimi k2.5 for nanogpt --- src/agents/nanogpt-models.ts | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/agents/nanogpt-models.ts b/src/agents/nanogpt-models.ts index c4e56109b..27695d77b 100644 --- a/src/agents/nanogpt-models.ts +++ b/src/agents/nanogpt-models.ts @@ -83,6 +83,38 @@ export const NANOGPT_MODEL_CATALOG = [ contextWindow: 200000, maxTokens: 131072, }, + { + id: "moonshotai/kimi-k2.5", + name: "Kimi K2.5", + reasoning: false, + input: ["text", "image"], + contextWindow: 256000, + maxTokens: 65536, + }, + { + id: "moonshotai/kimi-k2.5:thinking", + name: "Kimi K2.5 Thinking", + reasoning: true, + input: ["text", "image"], + contextWindow: 256000, + maxTokens: 65536, + }, + { + id: "moonshotai/kimi-k2.5-original", + name: "Kimi K2.5 (Official API)", + reasoning: false, + input: ["text", "image"], + contextWindow: 256000, + maxTokens: 65536, + }, + { + id: "moonshotai/kimi-k2.5-original:thinking", + name: "Kimi K2.5 Thinking (Official API)", + reasoning: true, + input: ["text", "image"], + contextWindow: 256000, + maxTokens: 65536, + }, { id: "deepseek-v3.2-original", name: "DeepSeek V3.2 Original",