Instructions to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf", filename="ΩFFΣLLIα_MXFP4_MOE_Qwable-v1.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE # Run inference directly in the terminal: llama cli -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE # Run inference directly in the terminal: llama cli -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE # Run inference directly in the terminal: ./llama-cli -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE # Run inference directly in the terminal: ./build/bin/llama-cli -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Use Docker
docker model run hf.co/Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
- LM Studio
- Jan
- vLLM
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
- Ollama
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with Ollama:
ollama run hf.co/Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
- Unsloth Studio
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf to start chatting
- Pi
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with Docker Model Runner:
docker model run hf.co/Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
- Lemonade
How to use Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE
Run and chat with the model
lemonade run user.OFFELLIA_MXFP4_MOE_Qwable-v1.gguf-MXFP4_MOE_QWABLE
List all available models
lemonade list
Configure Hermes
# Install Hermes:
curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
hermes setup# Point Hermes at the local server:
hermes config set model.provider custom
hermes config set model.base_url http://127.0.0.1:8080/v1
hermes config set model.default Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLERun Hermes
hermes
ΩFFΣLLIα — Quantização GGUF Zetahelicoidal
Derivado GGUF do modelo base, processado com a quantização ΩFFΣLLIα / Zetahelicoidal sobre o pipeline do llama.cpp.
Compatível com qualquer runtime que carregue GGUF: llama.cpp, llama-server, Ollama, LM Studio, KoboldCpp, text-generation-webui, entre outros.
Créditos. Todos os pesos e a arquitetura pertencem ao modelo base. Este repositório distribui apenas o derivado quantizado. Modelo base: lordx64/Qwable-v1
📌 Visão geral
| Item | Valor |
|---|---|
| Variante | ΩFFΣLLIα / Zetahelicoidal |
| Formato | GGUF |
| Relação com o base | Derivado quantizado |
| Quantização | Brunobkr (ΩFFΣLLIα) |
| Abliteração | Heretic (AGPL-3.0) |
| Idiomas | Conforme o modelo base (multilíngue) |
Os pesos efetivos durante a inferência correspondem aos do modelo base sob o formato de quantização escolhido.
🧬 Quantização Zetahelicoidal (ΩFFΣLLIα)
A ΩFFΣLLIα / Zetahelicoidal é uma camada de pré-condicionamento determinística e reversível, aplicada bloco a bloco antes da quantização padrão do GGML/llama.cpp e desfeita na dequantização.
Ela não substitui os formatos nativos (Q-K, IQ, MXFP4_MOE, etc.) — opera sobre eles, preservando compatibilidade total com qualquer runtime GGUF. Por ser determinística e reversível, não altera a interface do arquivo nem exige patches no consumidor: carrega como um GGUF comum.
🚀 Uso rápido com llama.cpp
# CLI
llama-cli -m <NOME_DO_ARQUIVO>.gguf \
-p "Escreva um haiku sobre GPUs" \
-c 8192 -ngl 99
# Servidor (API compatível com OpenAI)
llama-server -m <NOME_DO_ARQUIVO>.gguf \
-c 8192 -ngl 99 --port 8080
-ngl 99envia todas as camadas para a GPU. Em CPU-only ou VRAM limitada, reduza o valor (ex.:-ngl 0para CPU).
Chamada à API do llama-server:
curl http://127.0.0.1:8080/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"Olá!"}],"stream":false}'
Download
huggingface-cli download Brunobkr/<SEU-REPO> \
<NOME_DO_ARQUIVO>.gguf \
--local-dir ./models
Outras ferramentas
- Ollama: crie um
ModelfilecomFROM ./<NOME_DO_ARQUIVO>.ggufe rodeollama create <nome> -f Modelfile. - LM Studio / KoboldCpp / text-generation-webui: carregue o
.ggufdiretamente pela interface.
🎯 Casos de uso
Geração e edição de texto, chat e IA conversacional, sumarização, assistentes de código e fluxos agênticos — conforme as capacidades do modelo base.
🔓 Heretic — Abliteração e licença (AGPL-3.0)
Este derivado teve o alinhamento de segurança modificado via Heretic (AGPL-3.0).
Uso responsável. Por se tratar de um modelo com alinhamento modificado, o usuário é o único responsável pelo uso, em conformidade com a licença do modelo base e a legislação aplicável.
⚠️ Notas e limitações
- Derivado quantizado: os pesos efetivos na inferência correspondem aos do modelo base sob o formato de quant escolhido.
- Parâmetros de geração (temperatura,
top_p,top_k, template de chat, tokens especiais) seguem as recomendações do modelo base — consulte o card original. - Alinhamento: quando abliterado via Heretic, o comportamento de recusa é alterado — avalie no seu caso de uso.
- Validação: avalie empiricamente perplexidade/qualidade do GGUF no seu fluxo antes de produção.
📚 Referências
- Modelo base: https://huggingface.co/lordx64/Qwable-v1
- Heretic (abliteração): https://github.com/p-e-w/heretic
- llama.cpp / GGUF: https://github.com/ggml-org/llama.cpp
- Especificação GGUF: https://huggingface.co/docs/hub/gguf
- ΩFFΣLLIα (Hugging Face): https://huggingface.co/Brunobkr
- Kernel (dataset): https://huggingface.co/datasets/Brunobkr/OFFELLIA_Kernel_llama-server
- Depósito de pesquisa (Zenodo): https://doi.org/10.5281/zenodo.20026837
✍️ Citação
@misc{becker_offsellia_zetahelicoidal,
title = {{ΩFFΣLLIα: Zetahelicoidal quantization layer for GGUF / llama.cpp}},
author = {Becker, Bruno},
year = {2026},
howpublished = {Hugging Face},
note = {Deterministic, reversible per-block pre-conditioning kernel},
url = {https://huggingface.co/Brunobkr},
doi = {10.5281/zenodo.20026837}
}
- Downloads last month
- 231
4-bit
Model tree for Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf
Base model
Qwen/Qwen3.6-35B-A3B
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp# Start a local OpenAI-compatible server: llama serve -hf Brunobkr/OFFELLIA_MXFP4_MOE_Qwable-v1.gguf:MXFP4_MOE_QWABLE