Update model type in config.json

#8

The model type is currently set to qwen2_5_vl_text, which causes a ModuleNotFoundError: No module named 'transformers.models.qwen2_5_vl_text' when loading any variant of Qwen2.5-7b-Instruct available in the Unsloth mapper. The incorrect model type qwen2_5_vl_text gets passed to the model_types variable in the unsloth-zoo compiler, which then triggers the error when exec(f"import {model_location}", globals()) is executed.
Screen Shot 2025-09-10 at 1.12.03 PM.png
Change the model type from qwen2_5_vl_text to qwen2_5_vl to match the correct Transformers module path.

Ready to merge
This branch is ready to get merged automatically.

Sign up or log in to comment