--- language: - en - fr - de - es - pt - it - ja - ko - ru - zh - ar - fa - id - ms - ne - pl - ro - sr - sv - tr - uk - vi - hi - bn license: apache-2.0 library_name: mlx inference: false base_model: unsloth/Mistral-Small-3.2-24B-Instruct-2506 pipeline_tag: text-generation tags: - mlx --- # unsloth-Mistral-Small-3.2-24B-Instruct-2506-qx86-hi-mlx This model [unsloth-Mistral-Small-3.2-24B-Instruct-2506-qx86-hi-mlx](https://huggingface.co/unsloth-Mistral-Small-3.2-24B-Instruct-2506-qx86-hi-mlx) was converted to MLX format from [unsloth/Mistral-Small-3.2-24B-Instruct-2506](https://huggingface.co/unsloth/Mistral-Small-3.2-24B-Instruct-2506) using mlx-lm version **0.28.2**. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("unsloth-Mistral-Small-3.2-24B-Instruct-2506-qx86-hi-mlx") prompt = "hello" if tokenizer.chat_template is not None: messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) response = generate(model, tokenizer, prompt=prompt, verbose=True) ```