Views
No views yet
mistralai/Mistral-Small-3.1-24B-Instruct-2503,
converted for use on Apple Silicon via mlx-vlm.mistralai/Mistral-Small-3.1-24B-Instruct-2503mlx-vlm 0.5.0mlx_vlm.convert)1from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3from mlx_vlm.utils import load_config
4
5model, processor = load("luiscalisto/Mistral-Small-3.1-24B-Instruct-2503-MLX-4bit")
6config = load_config("luiscalisto/Mistral-Small-3.1-24B-Instruct-2503-MLX-4bit")
7
8image = ["path/to/image.jpg"]
9prompt = apply_chat_template(processor, config, "Describe this image.", num_images=len(image))
10print(generate(model, processor, prompt, image, max_tokens=128, verbose=False))mistralai/Mistral-Small-3.1-24B-Instruct-2503. The original model and
its license terms (apache-2.0) carry through unchanged. Please cite the
upstream authors when using this model. See the source repository for the
authoritative model card and citation.llm-mlx-conversions,
a small utility for publishing community MLX 4-bit quants of open-weight LLMs.