Views
No views yet
1pip install mlx-lm
2mlx_lm.generate --model DJLougen/Harmonic-Hermes-9B-MLX-bf16 \
3 --prompt "You can call get_weather(location). What's the weather in Toronto?"1from mlx_lm import load, generate
2model, tokenizer = load("DJLougen/Harmonic-Hermes-9B-MLX-bf16")
3messages = [{"role": "user", "content": "List three primes, then verify each."}]
4prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True)
5print(generate(model, tokenizer, prompt=prompt, max_tokens=512))<think> reasoning blocks and emits tool calls in the Hermes/Qwen
function-calling format. The chat template (with tool-use support) ships with this repo.DJLougen/Harmonic-Hermes-9B to MLX with mlx-lm 0.31.2 on an NVIDIA GB10 (DGX Spark)
using the MLX CUDA backend. This is a text-generation (LLM) build; the vision tower
is not included — for multimodal inference use the GGUF mmproj in
DJLougen/Harmonic-Hermes-9B-GGUF.| Repo | Precision | Size |
|---|---|---|
| Harmonic-Hermes-9B-MLX-bf16 | bf16 | ~17 GB |
| Harmonic-Hermes-9B-MLX-8bit | 8-bit | ~8.9 GB |
| Harmonic-Hermes-9B-MLX-4bit | 4-bit | ~4.8 GB |