Views
No views yet
Hal0ai/hal0-brain-sft for llama.cpp / hal0-slot / Ollama users.general.file_type header is Q4_1 (the rocmfp4-llama fork's universal default — not to be trusted), but the actual weight tensors are F16. Match the 2.0 GB file size to confirm.installer/etc-hal0/slots/brain.toml:1[model]
2default = "hal0-brain-sft" # operator assigns one of the hal0ai/ GGUF variants
3context_size = 65536hal0 model assign hal0-brain-sft-GGUF --slot brain && hal0 slot load brain, the GGUF is loaded by hal0-slot@brain.service (port 8089, GPU-Vulkan llama-server container, profile chat) and fronts the hal0/brain virtual model.ensure_brain_provisioned in src/hal0/brain/provision.py) and drives the shared toolloop.engine.run_tool_loop to serve /api/brain/chat (and the legacy /api/board/chat alias). Tool turns are routed off-slot to hal0/code or hal0/agent per [brain_chat].tool_model.1# CLI
2llama-cli -m model.gguf -p "What does the hal0 'agent' slot default to?" -n 256 --jinja
3
4# Server (OpenAI-compatible, what hal0-slot wraps)
5llama-server -m model.gguf --jinja -fa --port 80801# From a Modelfile
2FROM ./model.gguf
3PARAMETER stop "<|im_end|>"
4
5ollama run hal0-brain-sft "What does the hal0 'agent' slot default to?"1# 1. Pull into hal0's local model store
2hal0 model pull Hal0ai/hal0-brain-sft-GGUF
3
4# 2. Assign to the brain slot (default port 8089, GPU-Vulkan)
5hal0 model assign hal0-brain-sft --slot brain
6
7# 3. Start the slot container
8hal0 slot load brain
9
10# 4. Verify it's serving
11curl http://127.0.0.1:8089/v1/modelshal0.toml:1[brain_chat]
2enabled = true
3model = "hal0/brain"
4tool_model = "hal0/agent" # OR "hal0/code" — routes tool turns
5max_rounds = 8
6completion_timeout_s = 300.0| Base model | Hal0ai/hal0-brain-sft (BF16 safetensors) |
| Relation | quantized (same weights, GGUF container) |
| Architecture | LlamaForCausalLM, 1.5B params |
| Dtype / quant | F16 (tensors) |
| SHA-256 | ed9d28c4eac1d7c291bc80d9410c243a3d28e655921ccaf90f2b6619aa24d2c3 |
| File size | 2.0 GB |
| License | Apache-2.0 |
Hal0ai/hal0-brain-sft — BF16 safetensors (HF transformers)Hal0ai/hal0-brain-sft-fpx8-agent — Q8_0 GGUF (agent slot)Hal0ai/hal0-brain-sft-fpx4-agent — ROCmFP4 GGUF (AMD Strix)Hal0ai/hal0-brain-sft-GGUFdocs/rework/hal0-specs/spec-p3-brain.final.md