Views
No views yet
Qwen/Qwen3.6-35B-A3B packaged for fast local serving with lightning-mlx.mtp.safetensors) and runtime metadata (mtplx_runtime.json) so lightning-mlx can use its Qwen3.6 MTPLX serving path on Apple Silicon. The included runtime metadata was verified on Darwin arm64 with mtplx_version: 0.1.0rc3, mtp_depth_max: 1, and the performance-cold recommended profile.python3 -m pip install git+https://github.com/samuelfaj/lightning-mlx.gitcurl -fsSL https://raw.githubusercontent.com/samuelfaj/lightning-mlx/main/install.sh | bashlightning-mlx --helplightning-mlx serve samuelfaj/Qwen3.6-35B-A3B-8bit-MTPLX-Optimized-Speedlightning-mlx serve /path/to/Qwen3.6-35B-A3B-8bit-MTPLX-Optimized-Speedlightning-mlx serve samuelfaj/Qwen3.6-35B-A3B-8bit-MTPLX-Optimized-Speed --daemon~/.lightning-mlx/logs/, and can restart the server if the model process exits unexpectedly.1lightning-mlx status
2lightning-mlx tui <PID-or-model-name>
3lightning-mlx kill <PID-or-model-name>status to list running daemons, tui to attach the live monitor, and kill to stop by supervisor PID, server PID, alias, or model name.1curl http://localhost:8010/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "local",
5 "messages": [
6 {"role": "user", "content": "Write a tiny Python HTTP server."}
7 ],
8 "stream": true
9 }'lightning-mlx is local, so OpenAI-compatible clients can point at the local base URL and keep "model": "local" unless you override the served model name.lightning-mlx is built for local agent workloads on Apple Silicon: short streamed turns, tool calls, growing context, and repeated low-latency interactions. With this model it can use the packaged MTPLX metadata and Qwen3.6 serving preset instead of treating the checkpoint as a generic MLX model.lightning-mlx can package a similar MTPLX model:1lightning-mlx convert-mtplx \
2 /path/to/Qwen3.6-35B-A3B-8bit \
3 --mtp-source /path/to/Qwen3.6-35B-A3B/path/to/Qwen3.6-35B-A3B-8bit-MTPLX-Optimized-Speedlightning-mlx serve /path/to/Qwen3.6-35B-A3B-8bit-MTPLX-Optimized-Speedmlx-vlm:pip install -U mlx-vlm1python -m mlx_vlm.generate \
2 --model samuelfaj/Qwen3.6-35B-A3B-8bit-MTPLX-Optimized-Speed \
3 --max-tokens 100 \
4 --temperature 0.0 \
5 --prompt "Describe this image." \
6 --image <path_to_image>