From 1600b35f25722f53b1b2d2dddd7bf7ca95df3315 Mon Sep 17 00:00:00 2001 From: David Hind Date: Tue, 5 May 2026 20:21:54 -0500 Subject: [PATCH] fix: set processor_repo to vision weights repo in Kimi model cards The processor_repo fields for Kimi K2.5 and K2.6 pointed to the full LLM repos (moonshotai/Kimi-K2.5, moonshotai/Kimi-K2.6), which are not downloaded locally (595+ GB). The image processor must be loaded from the vision weights repo, which IS downloaded alongside the vision weights. - mlx-community/Kimi-K2.5: processor_repo -> Drifter4242/Kimi-K2.5-vision (also fixes weights_repo: davehind/ -> Drifter4242/ after account transfer) - mlx-community/Kimi-K2.6-mlx-DQ3_K_M-q8: processor_repo -> exolabs/Kimi-K2.6-vision - moonshotai/Kimi-K2.6: processor_repo -> exolabs/Kimi-K2.6-vision Without this fix vision loading fails immediately with a FileNotFoundError when trying to load the tokenizer/processor from the non-existent local path for the full model. --- resources/inference_model_cards/mlx-community--Kimi-K2.5.toml | 4 ++-- .../mlx-community--Kimi-K2.6-mlx-DQ3_K_M-q8.toml | 2 +- resources/inference_model_cards/moonshotai--Kimi-K2.6.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/inference_model_cards/mlx-community--Kimi-K2.5.toml b/resources/inference_model_cards/mlx-community--Kimi-K2.5.toml index 7460d91e05..2558ba2bd4 100644 --- a/resources/inference_model_cards/mlx-community--Kimi-K2.5.toml +++ b/resources/inference_model_cards/mlx-community--Kimi-K2.5.toml @@ -17,8 +17,8 @@ in_bytes = 662498705408 [vision] image_token_id = 163605 model_type = "kimi_vl" -weights_repo = "davehind/Kimi-K2.5-vision" -processor_repo = "moonshotai/Kimi-K2.5" +weights_repo = "Drifter4242/Kimi-K2.5-vision" +processor_repo = "Drifter4242/Kimi-K2.5-vision" # Source: https://deepwiki.com/MoonshotAI/Kimi-K2.5/3.7-recommended-parameters # Source: https://unsloth.ai/docs/models/kimi-k2.5 diff --git a/resources/inference_model_cards/mlx-community--Kimi-K2.6-mlx-DQ3_K_M-q8.toml b/resources/inference_model_cards/mlx-community--Kimi-K2.6-mlx-DQ3_K_M-q8.toml index 2571a660be..70b8ce37ed 100644 --- a/resources/inference_model_cards/mlx-community--Kimi-K2.6-mlx-DQ3_K_M-q8.toml +++ b/resources/inference_model_cards/mlx-community--Kimi-K2.6-mlx-DQ3_K_M-q8.toml @@ -18,7 +18,7 @@ in_bytes = 470628683776 image_token_id = 163605 model_type = "kimi_vl" weights_repo = "exolabs/Kimi-K2.6-vision" -processor_repo = "moonshotai/Kimi-K2.6" +processor_repo = "exolabs/Kimi-K2.6-vision" # Source: https://huggingface.co/moonshotai/Kimi-K2.6 [sampling_defaults] diff --git a/resources/inference_model_cards/moonshotai--Kimi-K2.6.toml b/resources/inference_model_cards/moonshotai--Kimi-K2.6.toml index 8d9d19b760..c8d811f3f7 100644 --- a/resources/inference_model_cards/moonshotai--Kimi-K2.6.toml +++ b/resources/inference_model_cards/moonshotai--Kimi-K2.6.toml @@ -18,7 +18,7 @@ in_bytes = 595148192736 image_token_id = 163605 model_type = "kimi_vl" weights_repo = "exolabs/Kimi-K2.6-vision" -processor_repo = "moonshotai/Kimi-K2.6" +processor_repo = "exolabs/Kimi-K2.6-vision" # Source: https://huggingface.co/moonshotai/Kimi-K2.6 [sampling_defaults]