Views
No views yet

| Repo | Bits | Approx. size | Notes |
|---|---|---|---|
-MLX-16bit | bf16 | 55.6 GB | Reference quality. |
-MLX-8bit | 8 | 29.5 GB | Near-lossless. |
-MLX-6bit | 6 | 22.6 GB | High fidelity. |
-MLX-4bit | 4 | 15.6 GB | Most popular. |
1pip install mlx-vlm
2mlx_vlm.generate \
3 --model GestaltLabs/Ornstein-Hermes-3.6-27b-MLX-8-bit \
4 --image https://example.com/image.jpg \
5 --prompt "Describe this image in detail."1from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model, processor = load("GestaltLabs/Ornstein-Hermes-3.6-27b-MLX-8-bit")
5config = model.config
6
7messages = [{"role": "user", "content": "What's in this image?"}]
8prompt = apply_chat_template(processor, config, messages, num_images=1)
9
10output = generate(model, processor, prompt, image=["./image.jpg"], max_tokens=512, verbose=True)
11print(output)<|im_start|>system
You are a function calling AI model. You are provided with function signatures within <tools></tools> XML tags.
<tools>
[{"name": "get_weather", "description": "...", "parameters": {...}}]
</tools>
<|im_end|>
<|im_start|>user
What's the weather in Tokyo?<|im_end|>
<|im_start|>assistant
<think>The user wants weather info. I'll call get_weather.</think>
<tool_call>{"name": "get_weather", "arguments": {"city": "Tokyo"}}</tool_call><|im_end|>
<|im_start|>tool
<tool_response>{"temp_c": 18, "condition": "cloudy"}</tool_response><|im_end|>
<|im_start|>assistant
It's 18°C and cloudy in Tokyo.<|im_end|>| Source | GestaltLabs/Ornstein-hermes-3.6-27b (bf16) |
| Format | MLX safetensors, 8-bit (group size 64, affine) |
| Tool | mlx-vlm mlx_vlm.convert |
| Hardware | NVIDIA GB10 (DGX Spark) via the MLX CUDA backend |
@dataset{lougen_acta_2026,
author = {DJLougen},
title = {Acta: A Premium Curated Sample of High-Quality Agentic Tool-Use Conversations},
year = {2026},
url = {https://huggingface.co/datasets/DJLougen/Acta}
}