Views
No views yet
empero-ai/Qwythos-9B-Claude-Mythos-5-1M to Apple's MLX format, quantized to 8bit.mlx-vlmempero-ai/Qwythos-9B-Claude-Mythos-5-1MQwen/Qwen3.5-9Bchat_template.jinja. A system block is emitted only when the caller provides one. The weights are unchanged and identical to the same-quantization base variant.uv add mlx-vlm1from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model, processor = load("ToPo-ToPo/Qwythos-9B-Claude-Mythos-5-1M-mlx-8bit-noident")
5messages = [{"role": "user", "content": "Hello"}]
6prompt = apply_chat_template(processor, model.config, messages)
7print(generate(model, processor, prompt, max_tokens=256))