Instructions to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL # Run inference directly in the terminal: llama cli -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL # Run inference directly in the terminal: llama cli -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
Use Docker
docker model run hf.co/SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
- Ollama
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with Ollama:
ollama run hf.co/SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
- Unsloth Studio
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF to start chatting
- Pi
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with Docker Model Runner:
docker model run hf.co/SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
- Lemonade
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
Run and chat with the model
lemonade run user.Qwen3.6-35B-A3B-heretic-MTP-GGUF-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
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 SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL
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 "SassyDiffusion/Qwen3.6-35B-A3B-heretic-MTP-GGUF:Q4_K_XL" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload folder using huggingface_hub
Browse files- .gitattributes +6 -0
- Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ1_M.gguf +3 -0
- Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ2_M.gguf +3 -0
- Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ2_XXS.gguf +3 -0
- Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ3_S.gguf +3 -0
- Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ3_XXS.gguf +3 -0
- Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ4_NL.gguf +3 -0
- Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ4_XS.gguf +3 -0
.gitattributes
CHANGED
|
@@ -56,3 +56,9 @@ Qwen3.6-35B-A3B-heretic.EMB_BF16.Q5_K_XL.gguf filter=lfs diff=lfs merge=lfs -tex
|
|
| 56 |
Qwen3.6-35B-A3B-heretic.EMB_BF16.Q6_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
Qwen3.6-35B-A3B-heretic.EMB_BF16.Q8_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
Qwen3.6-35B-A3B-heretic.EMB_BF16.Q6_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
Qwen3.6-35B-A3B-heretic.EMB_BF16.Q8_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6e5c1aae7fa81d9c9836be0101ea9aa6e55d3a9bc9ed2c88366272b1293beed
|
| 3 |
+
size 12097472448
|
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:431c955add253491a1ae088910a89eb0ead1947e4a5e98396a7fcdad5aaf630f
|
| 3 |
+
size 12550457280
|
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:431c955add253491a1ae088910a89eb0ead1947e4a5e98396a7fcdad5aaf630f
|
| 3 |
+
size 12550457280
|
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75274e88a1915ba448acfe1c94d96207c2a91c874da0d9c9f72b9fbe5c86611d
|
| 3 |
+
size 14669211584
|
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb8145b9d23a2f8400e43cd66cb20bec40ba25fee04b7fe42eee33e1e990ee95
|
| 3 |
+
size 15946377152
|
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ac663d356490d2cb66177ed062d5443095760e32a34f7d3f1ebb2581be3a2eb
|
| 3 |
+
size 19012970432
|
Qwen3.6-35B-A3B-heretic.EMB_BF16.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28986a40be5eb043670189f8aee37fa07f463a0a93cdf05c9d9798d641cdec36
|
| 3 |
+
size 18685814720
|