From aabf284cf6fe477ab3f7b3cabb214b03eeec3a36 Mon Sep 17 00:00:00 2001 From: Muhammad Mugni Hadi Date: Wed, 28 Jan 2026 09:46:24 +0700 Subject: [PATCH] fix(chutes): correct Kimi-K2.5-TEE model specifications Corrections made based on chutes API source: - Updated name from 'Kimi K2.5 TEE' to 'moonshotai/Kimi-K2.5-TEE' - Added family field: 'kimi' - Fixed reasoning capability from false to true - Added reasoning_content interleaved field - Fixed tool_call capability from false to true - Fixed structured_output capability from false to true - Added knowledge cutoff: 2024-10 - Corrected context window from 32,768 to 262,144 - Corrected output window from 8,192 to 65,535 - Expanded input modalities to include text, image, and video This PR supersedes #736 which contains errors in model specifications. --- .../models/moonshotai/Kimi-K2.5-TEE.toml | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml b/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml index ec3ef1b73..20027b813 100644 --- a/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml +++ b/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml @@ -1,21 +1,26 @@ -name = "Kimi K2.5 TEE" +name = "moonshotai/Kimi-K2.5-TEE" +family = "kimi" release_date = "2026-01-27" last_updated = "2026-01-27" attachment = false -reasoning = false +reasoning = true temperature = true -tool_call = false -structured_output = false +tool_call = true +structured_output = true +knowledge = "2024-10" open_weights = true +[interleaved] +field = "reasoning_content" + [cost] input = 0.60 output = 3.00 [limit] -context = 32_768 -output = 8_192 +context = 262_144 +output = 65_535 [modalities] -input = ["text"] -output = ["text"] +input = ["text", "image", "video"] +output = ["text"] \ No newline at end of file