Instructions to use bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx"
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 "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx" \ --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"
- MLX LM
How to use bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx"
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 bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx
Run Hermes
hermes
Luciole-23B-Instruct-1.1 — MLX 4-bit
MLX (Apple Silicon) 4-bit conversion of OpenLLM-France/Luciole-23B-Instruct-1.1 (LINAGORA / OpenLLM-France, NVIDIA Nemotron architecture, 128K context, Apache 2.0).
Provenance — read this
This quant was converted from the Q4_K_M GGUF, not from the original bf16 weights: GGUF K-quants were dequantized to fp16 and re-quantized to MLX 4-bit affine (group size 64) with a streaming tensor-by-tensor converter. It is therefore a double-quantized artifact — quality is a hair below a quant made from the bf16 originals. If you need maximum fidelity, quantize from the original safetensors instead. For everyday use on 24–36GB Macs this version is fine in practice.
Non-quantized tensors (embeddings, LayerNorms) are fp16. The Nemotron
LayerNorm-1P convention is preserved (stored gamma = true gamma − 1; mlx-lm's
nemotron.py adds the 1 back at runtime).
Use
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx")
prompt = tokenizer.apply_chat_template(
[{"role": "user", "content": "Hello!"}],
tokenize=False, add_generation_prompt=True,
)
print(generate(model, tokenizer, prompt=prompt, max_tokens=256))
Or serve an OpenAI-compatible API:
mlx_lm.server --model bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx --port 8080
~13 GB on disk. The authors recommend temp 0.7 / top_p 0.9.
Model details
| Arch | nemotron (dense, relu² MLP, partial rotary 0.5, LayerNorm-1P) |
| Layers | 40, hidden 6144, 48 Q / 8 KV heads (head_dim 128) |
| Vocab / ctx | 128000 / 131072 |
| Quant | 4-bit affine, group size 64 (embeddings + norms fp16) |
| Base | OpenLLM-France/Luciole-23B-Instruct-1.1 |
Conversion script: streaming GGUF→MLX, peak RAM ~1 tensor (contact: see commit history / repo discussions). Verified coherent end-to-end on Apple Silicon (M4 Pro + M1 pipeline-parallel over Thunderbolt) before upload.
- Downloads last month
- 55
Quantized
Model tree for bumblebuttpow/Luciole-23B-Instruct-1.1-4bit-mlx
Base model
OpenLLM-France/Luciole-23B-Base