Image-Text-to-Text
MLX
Safetensors
qwen3_5
omlx
oq
quantized
8-bit precision
qwen3.5
mtp
vision
conversational
Instructions to use dylpickle13/Qwen3.5-2B-oQ8-mtp with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use dylpickle13/Qwen3.5-2B-oQ8-mtp with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("dylpickle13/Qwen3.5-2B-oQ8-mtp") config = load_config("dylpickle13/Qwen3.5-2B-oQ8-mtp") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use dylpickle13/Qwen3.5-2B-oQ8-mtp with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "dylpickle13/Qwen3.5-2B-oQ8-mtp"
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": "dylpickle13/Qwen3.5-2B-oQ8-mtp" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent
How to use dylpickle13/Qwen3.5-2B-oQ8-mtp 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 "dylpickle13/Qwen3.5-2B-oQ8-mtp"
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 dylpickle13/Qwen3.5-2B-oQ8-mtp
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use dylpickle13/Qwen3.5-2B-oQ8-mtp with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "dylpickle13/Qwen3.5-2B-oQ8-mtp"
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 "dylpickle13/Qwen3.5-2B-oQ8-mtp" \ --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"
Finalize public release verification
Browse files- PUBLISH_CHECK.md +5 -4
PUBLISH_CHECK.md
CHANGED
|
@@ -62,10 +62,11 @@
|
|
| 62 |
|
| 63 |
## Public release
|
| 64 |
|
| 65 |
-
- repo made public:
|
| 66 |
-
- anonymous access verified:
|
| 67 |
- final public URL: <https://huggingface.co/dylpickle13/Qwen3.5-2B-oQ8-mtp>
|
| 68 |
-
-
|
|
|
|
| 69 |
|
| 70 |
## Backup
|
| 71 |
|
|
@@ -77,5 +78,5 @@
|
|
| 77 |
|
| 78 |
- old local `Qwen3.5-0.8B-oQ8-mtp` removed from oMLX: PASS
|
| 79 |
- temporary base source `Qwen/Qwen3.5-2B` removed from oMLX: PASS
|
| 80 |
-
- clean download removed: PENDING
|
| 81 |
- local project copy removed or retained intentionally: weights kept only under ignored `downloads/` temporarily for verification; no weights committed
|
|
|
|
| 62 |
|
| 63 |
## Public release
|
| 64 |
|
| 65 |
+
- repo made public: PASS
|
| 66 |
+
- anonymous access verified: PASS — public API and raw README returned HTTP 200
|
| 67 |
- final public URL: <https://huggingface.co/dylpickle13/Qwen3.5-2B-oQ8-mtp>
|
| 68 |
+
- public release commit verified: `18207548b8ce5bc8d699d35cbe9dcf73d0bbd056`
|
| 69 |
+
- final verification note: this `PUBLISH_CHECK.md` was updated after public release, so the repository latest commit may be newer than the public release commit above.
|
| 70 |
|
| 71 |
## Backup
|
| 72 |
|
|
|
|
| 78 |
|
| 79 |
- old local `Qwen3.5-0.8B-oQ8-mtp` removed from oMLX: PASS
|
| 80 |
- temporary base source `Qwen/Qwen3.5-2B` removed from oMLX: PASS
|
| 81 |
+
- clean download removed: PENDING until final release notes are complete
|
| 82 |
- local project copy removed or retained intentionally: weights kept only under ignored `downloads/` temporarily for verification; no weights committed
|