Views
No views yet
JetBrains/Mellum2-12B-A2.5B-Instruct,
the instruction-tuned Mixture-of-Experts coding assistant from JetBrains. The weights are kept in
their native bfloat16 precision, so the model behaves exactly like the original checkpoint.Mellum2-12B-A2.5B-Thinking,
the Instruct model answers directly without emitting a <think> reasoning block, which makes it
faster and lighter on tokens for straightforward coding and tool-use tasks.mlx_lm.server driven by the swival agent
harness: across repeated runs the model issued well-formed read_file, edit_file,
write_file, list_files, and shell-command calls and never produced a malformed tool call.
Generation stops cleanly on <|im_end|> (the eos_token_id is set to [0, 28], which is what
lets agent harnesses see a proper tool_calls finish reason — the upstream checkpoint ships
eos_token_id: 0, which never fires on a chat turn and leaves tool calls running past the token
limit).Mellum2-12B-A2.5B-Instruct-mlx-8bit — 8-bit, effectively indistinguishable from this modelMellum2-12B-A2.5B-Instruct-mlx-4bit — 4-bit, tuned to keep tool calling reliablemellum architecture is not supported by the stock mlx-lm code yet.mlx-lm from source:pip install git+https://github.com/jedisct1/mlx-lmuv:uvx --from git+https://github.com/jedisct1/mlx-lm mlx_lm.server1uvx --from git+https://github.com/jedisct1/mlx-lm \
2 mlx_lm.generate --model jedisct1/Mellum2-12B-A2.5B-Instruct-mlx \
3 --prompt "Write a Python function that reverses a linked list." \
4 --max-tokens 16384 \
5 --temp 0.6 --top-p 0.95 --top-k 201uvx --from git+https://github.com/jedisct1/mlx-lm \
2 mlx_lm.server --model jedisct1/Mellum2-12B-A2.5B-Instruct-mlx \
3 --max-tokens 16384 \
4 --temp 0.6 --top-p 0.95 --top-k 20temperature=0.6, top_p=0.95, top_k=20.uv tool install swivalswival --provider llamacpp --model jedisct1/Mellum2-12B-A2.5B-Instruct-mlx