From fffa43be869512804efc0922b86d14faa4a2d98b Mon Sep 17 00:00:00 2001 From: Kingsley Date: Tue, 24 Jun 2025 14:59:47 +0800 Subject: [PATCH] [model] Add mistral-small 3.2 & kimi-dev (#8433) --- src/llamafactory/extras/constants.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/llamafactory/extras/constants.py b/src/llamafactory/extras/constants.py index 08b7e13c..a1a31c5a 100644 --- a/src/llamafactory/extras/constants.py +++ b/src/llamafactory/extras/constants.py @@ -1143,6 +1143,17 @@ register_model_group( ) +register_model_group( + models={ + "Kimi-Dev-72B-Instruct": { + DownloadSource.DEFAULT: "moonshotai/Kimi-Dev-72B", + DownloadSource.MODELSCOPE: "moonshotai/Kimi-Dev-72B", + }, + }, + template="qwen", +) + + register_model_group( models={ "Kimi-VL-A3B-Instruct": { @@ -1675,6 +1686,10 @@ register_model_group( DownloadSource.DEFAULT: "mistralai/Mistral-Small-3.1-24B-Instruct-2503", DownloadSource.MODELSCOPE: "mistralai/Mistral-Small-3.1-24B-Instruct-2503", }, + "Mistral-Small-3.2-24B-Instruct": { + DownloadSource.DEFAULT: "mistralai/Mistral-Small-3.2-24B-Instruct-2506", + DownloadSource.MODELSCOPE: "mistralai/Mistral-Small-3.2-24B-Instruct-2506", + }, }, template="mistral_small", multimodal=True,