Text Generation
MLX
Safetensors
English
Chinese
qwen3_5_moe
mlx-lm
4-bit precision
qwen3.5
Mixture of Experts
apodex
conversational
Instructions to use abenzerps/Apodex-1.1-mini-MLX with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use abenzerps/Apodex-1.1-mini-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("abenzerps/Apodex-1.1-mini-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 abenzerps/Apodex-1.1-mini-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 "abenzerps/Apodex-1.1-mini-MLX"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "abenzerps/Apodex-1.1-mini-MLX" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use abenzerps/Apodex-1.1-mini-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 "abenzerps/Apodex-1.1-mini-MLX"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "abenzerps/Apodex-1.1-mini-MLX" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abenzerps/Apodex-1.1-mini-MLX", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use abenzerps/Apodex-1.1-mini-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 "abenzerps/Apodex-1.1-mini-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 abenzerps/Apodex-1.1-mini-MLX
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use abenzerps/Apodex-1.1-mini-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 "abenzerps/Apodex-1.1-mini-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 "abenzerps/Apodex-1.1-mini-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"
| license: apache-2.0 | |
| arxiv: 2608.23283 | |
| language: | |
| - en | |
| - zh | |
| base_model: apodex/Apodex-1.1-mini | |
| base_model_relation: quantized | |
| pipeline_tag: text-generation | |
| library_name: mlx | |
| tags: | |
| - mlx | |
| - mlx-lm | |
| - 4-bit | |
| - qwen3.5 | |
| - moe | |
| - apodex | |
| # Apodex-1.1-mini MLX | |
| MLX conversion of [apodex/Apodex-1.1-mini](https://huggingface.co/apodex/Apodex-1.1-mini), a 35.95B-parameter Qwen3.5 MoE model for research, data, files, code, and tool-driven work. | |
| This text-only release is optimized for Apple silicon with `mlx-lm`. | |
| ## Upstream benchmarks | |
|  | |
| *Results reported by Apodex AI from evaluations of the original Apodex-1.1 model using FrontierAgent, its agent harness and evaluation suite.* | |
|  | |
| *Results reported by Apodex AI from evaluations of the original Apodex-1.1-mini checkpoint using FrontierAgent. With the Agent Team workflow, it scored 27.7 on APEX-Agent, 50.2 on FrontierFinance, and 51.7 on FrontierScience-Research.* | |
| ## Release | |
| | Format | Quantization | Size | | |
| | --- | --- | ---: | | |
| | MLX safetensors | Affine 4-bit, group size 64 | 19.5 GB | | |
| The MoE router and shared-expert gate weights remain at 8-bit; other eligible weights use affine 4-bit quantization. Image input and native MTP are not included in this MLX release. | |
| ## Usage | |
| ```bash | |
| pip install -U mlx-lm | |
| mlx_lm.generate \ | |
| --model abenzerps/Apodex-1.1-mini-MLX \ | |
| --prompt "Explain why reproducible builds matter." \ | |
| --max-tokens 512 --temp 0.7 | |
| ``` | |
| The 19.5 GB weights require additional unified memory for the runtime and KV cache, particularly at long context lengths. To disable thinking, pass `--chat-template-config '{"enable_thinking": false}'`. | |
| ## Source | |
| - Model: [apodex/Apodex-1.1-mini](https://huggingface.co/apodex/Apodex-1.1-mini) | |
| - Chat template revision: [`62583b4`](https://huggingface.co/apodex/Apodex-1.1-mini/commit/62583b464707ad58848bc2ab066747d8d5b02533) | |
| - License: [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) | |
| - Checksums: [SHA256SUMS](SHA256SUMS) | |