From c344db1bf8b2e32838805fd82b103aec6a09bda6 Mon Sep 17 00:00:00 2001 From: Alisson Lauffer Date: Tue, 27 Jan 2026 21:05:33 -0300 Subject: [PATCH 1/2] feat(chutes): update Kimi K2.5 TEE model capabilities Enable reasoning, tool calling, and multimodal input support for the Kimi K2.5 TEE model. Increase context limit from 32k to 262k tokens and output limit from 8k to 65k tokens. Add support for image and video inputs alongside text. Configure interleaved reasoning content field. --- .../chutes/models/moonshotai/Kimi-K2.5-TEE.toml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 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..fc6e14217 100644 --- a/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml +++ b/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml @@ -1,21 +1,25 @@ name = "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 +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_536 [modalities] -input = ["text"] +input = ["text", "image", "video"] output = ["text"] From 08e5d0f830b80171f3832970d68fcb2e0995604b Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Tue, 27 Jan 2026 21:59:39 -0500 Subject: [PATCH 2/2] Update Kimi-K2.5-TEE.toml configuration settings --- providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml b/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml index fc6e14217..74c97d3a6 100644 --- a/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml +++ b/providers/chutes/models/moonshotai/Kimi-K2.5-TEE.toml @@ -8,6 +8,7 @@ temperature = true tool_call = true knowledge = "2024-10" open_weights = true +structured_output = true [interleaved] field = "reasoning_content" @@ -18,7 +19,7 @@ output = 3.00 [limit] context = 262_144 -output = 65_536 +output = 65_535 [modalities] input = ["text", "image", "video"]