MLX 4-bit version (Apple Silicon) of the OdooClaw Medium 2.6B FT model (v18, canonical). Fine-tuned
LFM2.5-2.6B for tool calling inside
Odoo (ERP) via MCP. Ask in natural language in the Odoo chat and the model picks the right Odoo tool.
The v18 is the most balanced model of the series: top-2 in all 4 categories at once, no tradeoffs. Trained with balanced distribution (matches evaluation) and natural variety.
1pip install mlx-lm
2
3python -c "
4from mlx_lm import load, generate
5model, tokenizer = load('nicolasramos/odooclaw-medium-2.6b-ft-mlx')
6messages = [
7 {'role': 'system', 'content': 'Eres odooclaw, un asistente que gestiona Odoo ERP.'},
8 {'role': 'user', 'content': 'Busca el cliente Acme'},
9]
10prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
11print(generate(model, tokenizer, prompt=prompt, max_tokens=100))
12"
Apache 2.0 — free for everyone, that's the whole point.