Text Generation
MLX
Safetensors
qwen3_5_moe
Mixture of Experts
edge-inference
prerouter
lora
ssd-offload
conversational
4-bit precision
Instructions to use Edge0/Edge0-35B-A3B-preview with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Edge0/Edge0-35B-A3B-preview 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("Edge0/Edge0-35B-A3B-preview") 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 Edge0/Edge0-35B-A3B-preview with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Edge0/Edge0-35B-A3B-preview"
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": "Edge0/Edge0-35B-A3B-preview" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use Edge0/Edge0-35B-A3B-preview with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "Edge0/Edge0-35B-A3B-preview"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "Edge0/Edge0-35B-A3B-preview" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Edge0/Edge0-35B-A3B-preview", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use Edge0/Edge0-35B-A3B-preview 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 "Edge0/Edge0-35B-A3B-preview"
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 Edge0/Edge0-35B-A3B-preview
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Edge0/Edge0-35B-A3B-preview with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "Edge0/Edge0-35B-A3B-preview"
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 "Edge0/Edge0-35B-A3B-preview" \ --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"
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -30,7 +30,7 @@ pipeline_tag: text-generation
|
|
| 30 |
</div>
|
| 31 |
|
| 32 |
|
| 33 |
-
**Edge0-35b-a3b** — a 35B MoE LLM that runs at viable speed on
|
| 34 |
via the [edge0](https://github.com/Edge0-AI/edge0) streaming inference framework.
|
| 35 |
|
| 36 |
> **Preview status:** this is an early preview release of the edge0
|
|
@@ -41,10 +41,10 @@ via the [edge0](https://github.com/Edge0-AI/edge0) streaming inference framework
|
|
| 41 |
|
| 42 |
- **Runs in phone-class memory**: the full 4-bit checkpoint stays on
|
| 43 |
storage and experts are streamed on demand, so only the active
|
| 44 |
-
weights are in RAM — under **
|
| 45 |
upfront download of the weights into memory.
|
| 46 |
-
- **Fast enough for interactive use**:
|
| 47 |
-
|
| 48 |
- **Quality kept after quantization**: Recover-LoRA distillation keeps
|
| 49 |
the int4 model within **3.9 points** of its fp16 base.
|
| 50 |
- **Works out of the box**: base, LoRA and prerouter adapters ship
|
|
@@ -126,7 +126,7 @@ SSD on demand and are not resident.
|
|
| 126 |
- The MLX backend currently targets Apple Silicon; other backends are
|
| 127 |
on the edge0 roadmap.
|
| 128 |
- Long contexts grow the KV cache; use shorter contexts to keep peak
|
| 129 |
-
memory at
|
| 130 |
|
| 131 |
## Quick start
|
| 132 |
|
|
|
|
| 30 |
</div>
|
| 31 |
|
| 32 |
|
| 33 |
+
**Edge0-35b-a3b** — a 35B MoE LLM that runs at viable speed on a phone in under **3 GiB of active memory** (1/8 of its 23 GB weight footprint),
|
| 34 |
via the [edge0](https://github.com/Edge0-AI/edge0) streaming inference framework.
|
| 35 |
|
| 36 |
> **Preview status:** this is an early preview release of the edge0
|
|
|
|
| 41 |
|
| 42 |
- **Runs in phone-class memory**: the full 4-bit checkpoint stays on
|
| 43 |
storage and experts are streamed on demand, so only the active
|
| 44 |
+
weights are in RAM — under **3 GiB**, with no sharding and no
|
| 45 |
upfront download of the weights into memory.
|
| 46 |
+
- **Fast enough for interactive use**: 15 tok/s decode on a phone;
|
| 47 |
+
long prompts fill in at 140 tok/s.
|
| 48 |
- **Quality kept after quantization**: Recover-LoRA distillation keeps
|
| 49 |
the int4 model within **3.9 points** of its fp16 base.
|
| 50 |
- **Works out of the box**: base, LoRA and prerouter adapters ship
|
|
|
|
| 126 |
- The MLX backend currently targets Apple Silicon; other backends are
|
| 127 |
on the edge0 roadmap.
|
| 128 |
- Long contexts grow the KV cache; use shorter contexts to keep peak
|
| 129 |
+
memory at 3 GiB.
|
| 130 |
|
| 131 |
## Quick start
|
| 132 |
|