Text Generation
MLX
Safetensors
English
qwen3_5_moe
effect-ts
typescript
code
lora
qwen3
conversational
4-bit precision
Instructions to use jrad123777/effect-qwen36-35b-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use jrad123777/effect-qwen36-35b-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("jrad123777/effect-qwen36-35b-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 jrad123777/effect-qwen36-35b-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 "jrad123777/effect-qwen36-35b-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": "jrad123777/effect-qwen36-35b-mlx" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use jrad123777/effect-qwen36-35b-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 "jrad123777/effect-qwen36-35b-mlx"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "jrad123777/effect-qwen36-35b-mlx" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jrad123777/effect-qwen36-35b-mlx", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use jrad123777/effect-qwen36-35b-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 "jrad123777/effect-qwen36-35b-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 jrad123777/effect-qwen36-35b-mlx
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use jrad123777/effect-qwen36-35b-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 "jrad123777/effect-qwen36-35b-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 "jrad123777/effect-qwen36-35b-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"
Update format note: working GGUF now available
Browse files
README.md
CHANGED
|
@@ -41,11 +41,10 @@ This is the exact artifact our serving stack runs.
|
|
| 41 |
- **This repo:** the champion LoRA **fused into the 4-bit base**, in native MLX format (~18 GB). Runs
|
| 42 |
directly with `mlx_lm` on Apple Silicon β no conversion, no dequantization.
|
| 43 |
|
| 44 |
-
> **Format note (
|
| 45 |
-
>
|
| 46 |
-
>
|
| 47 |
-
>
|
| 48 |
-
> release.**
|
| 49 |
|
| 50 |
## Eval (real `tsc --strict`, frozen 24-task held-out benchmark)
|
| 51 |
**Raw single-greedy + RAG** β honest, same-harness, multi-seed flat mean (never a cherry-picked run).
|
|
@@ -97,7 +96,7 @@ first that compiles under `tsc`.
|
|
| 97 |
- Single-greedy compile rate is ~β
βΒ½ of hard tasks; pair with RAG + best-of-N + a `tsc` gate.
|
| 98 |
- `effect@4.0.0-beta.80` only; later betas may shift APIs.
|
| 99 |
- Reasoning/thinking is disabled (`enable_thinking=False`) β it's a direct code generator.
|
| 100 |
-
- MLX format β Apple Silicon.
|
| 101 |
|
| 102 |
Supersedes `jrad123777/effect-qwen36-35b-v3-gguf` (an earlier, weaker SFT checkpoint).
|
| 103 |
|
|
|
|
| 41 |
- **This repo:** the champion LoRA **fused into the 4-bit base**, in native MLX format (~18 GB). Runs
|
| 42 |
directly with `mlx_lm` on Apple Silicon β no conversion, no dequantization.
|
| 43 |
|
| 44 |
+
> **Format note (MLX vs GGUF):** the model was trained and is served in MLX, so this repo is the native,
|
| 45 |
+
> canonical release. A portable **llama.cpp GGUF build is now also available** (Q4_K_M + Q8_0,
|
| 46 |
+
> smoke-verified) at [`jrad123777/effect-qwen36-35b-gguf`](https://huggingface.co/jrad123777/effect-qwen36-35b-gguf)
|
| 47 |
+
> β use that for CPU / non-Apple inference.
|
|
|
|
| 48 |
|
| 49 |
## Eval (real `tsc --strict`, frozen 24-task held-out benchmark)
|
| 50 |
**Raw single-greedy + RAG** β honest, same-harness, multi-seed flat mean (never a cherry-picked run).
|
|
|
|
| 96 |
- Single-greedy compile rate is ~β
βΒ½ of hard tasks; pair with RAG + best-of-N + a `tsc` gate.
|
| 97 |
- `effect@4.0.0-beta.80` only; later betas may shift APIs.
|
| 98 |
- Reasoning/thinking is disabled (`enable_thinking=False`) β it's a direct code generator.
|
| 99 |
+
- MLX format β Apple Silicon. For CPU / non-Apple, use the portable GGUF (see format note above).
|
| 100 |
|
| 101 |
Supersedes `jrad123777/effect-qwen36-35b-v3-gguf` (an earlier, weaker SFT checkpoint).
|
| 102 |
|