How to use from
OpenClaw
Start the MLX server
# Install MLX LM:
uv tool install mlx-lm
# Start a local OpenAI-compatible server:
mlx_lm.server --model "bearzi/Trinity-Mini-oQ8"
Configure OpenClaw
# Install OpenClaw:
npm install -g openclaw@latest
# Register the local server and set it as the default model:
openclaw onboard --non-interactive --mode local \
  --auth-choice custom-api-key \
  --custom-base-url http://127.0.0.1:8080/v1 \
  --custom-model-id "bearzi/Trinity-Mini-oQ8" \
  --custom-provider-id mlx-lm \
  --custom-compatibility openai \
  --custom-text-input \
  --accept-risk \
  --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Quick Links

Trinity-Mini-oQ8

oQ8 mixed-precision MLX quantization produced via oMLX.

  • Quantization: oQ8 (sensitivity-driven mixed precision, group_size=64)
  • Format: MLX safetensors
  • Compatible with: mlx-lm, mlx-vlm, oMLX on Apple Silicon

Usage

from mlx_lm import load, generate
model, tokenizer = load("bearzi/Trinity-Mini-oQ8")
prompt = tokenizer.apply_chat_template(
    [{"role": "user", "content": "Hello"}],
    add_generation_prompt=True,
)
print(generate(model, tokenizer, prompt=prompt, max_tokens=512, verbose=True))

About oQ

oQ measures per-layer quantization sensitivity through calibration and allocates bits where they matter most — critical layers stay at higher precision, tolerant layers compress aggressively. Target averages of 2/3/4/6/8 bits are provided; actual per-layer bits vary by measured sensitivity.

See oQ documentation.

Comparative benchmarks and feedback welcome — please open a discussion.

Downloads last month
16
Safetensors
Model size
7B params
Tensor type
BF16
·
U32
·
MLX
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for bearzi/Trinity-Mini-oQ8

Quantized
(18)
this model

Collection including bearzi/Trinity-Mini-oQ8