Instructions to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF", filename="Qwen3.5-397B-A17B-heretic-Q8_0-00001-of-00009.gguf", )
llm.create_chat_completion( 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" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0 # Run inference directly in the terminal: llama-cli -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0 # Run inference directly in the terminal: llama-cli -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
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 Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
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 Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
Use Docker
docker model run hf.co/Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
- LM Studio
- Jan
- vLLM
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Sabomako/Qwen3.5-397B-A17B-heretic-bf16-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": "Sabomako/Qwen3.5-397B-A17B-heretic-bf16-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/Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
- Ollama
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with Ollama:
ollama run hf.co/Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
- Unsloth Studio
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-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 Sabomako/Qwen3.5-397B-A17B-heretic-bf16-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 Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF to start chatting
- Pi
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
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 Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with Docker Model Runner:
docker model run hf.co/Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
- Lemonade
How to use Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Sabomako/Qwen3.5-397B-A17B-heretic-bf16-GGUF:Q8_0
Run and chat with the model
lemonade run user.Qwen3.5-397B-A17B-heretic-bf16-GGUF-Q8_0
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +17 -0
- Qwen3.5-397B-A17B-heretic-bf16-00001-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00002-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00003-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00004-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00005-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00006-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00007-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00008-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00009-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00010-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00011-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00012-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00013-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00014-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00015-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00016-of-00017.gguf +3 -0
- Qwen3.5-397B-A17B-heretic-bf16-00017-of-00017.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,20 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Qwen3.5-397B-A17B-heretic-bf16-00001-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3.5-397B-A17B-heretic-bf16-00002-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3.5-397B-A17B-heretic-bf16-00003-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3.5-397B-A17B-heretic-bf16-00004-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3.5-397B-A17B-heretic-bf16-00005-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3.5-397B-A17B-heretic-bf16-00006-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3.5-397B-A17B-heretic-bf16-00007-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3.5-397B-A17B-heretic-bf16-00008-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3.5-397B-A17B-heretic-bf16-00009-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3.5-397B-A17B-heretic-bf16-00010-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3.5-397B-A17B-heretic-bf16-00011-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3.5-397B-A17B-heretic-bf16-00012-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Qwen3.5-397B-A17B-heretic-bf16-00013-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Qwen3.5-397B-A17B-heretic-bf16-00014-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Qwen3.5-397B-A17B-heretic-bf16-00015-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Qwen3.5-397B-A17B-heretic-bf16-00016-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Qwen3.5-397B-A17B-heretic-bf16-00017-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3.5-397B-A17B-heretic-bf16-00001-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88651a33dbd0394f9d2f07f90ee1a75ad0cbfd086ca40f3d8bbb849af975aa62
|
| 3 |
+
size 47838303264
|
Qwen3.5-397B-A17B-heretic-bf16-00002-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e41c9c7d16e0af3657010b960607fee6c07189ef501b4df968c18ff1b794d9b
|
| 3 |
+
size 48297158144
|
Qwen3.5-397B-A17B-heretic-bf16-00003-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b049f488b713b5480c17c2e96dd6ee8bd49c6005b6a03539a38f144ec8e84a0
|
| 3 |
+
size 48263554112
|
Qwen3.5-397B-A17B-heretic-bf16-00004-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90d9d4b48ab389fc508ddbbb690e98bcbf67b0ef2ae8dd33969fe42c67d9ae04
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00005-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c8665dd93d85d22a3e9887c7d6e8c65a6560e1d6819cfd7286ae57d5d640900
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00006-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bc7090cac580a3287e36e929f78a9e78b7bd8f39a370577f628a8694a5c348a
|
| 3 |
+
size 48027426432
|
Qwen3.5-397B-A17B-heretic-bf16-00007-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e35f588ae34d6ad61306d3e4e47716c5fd5a12159ffb65757307d8b2e5cf37b
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00008-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb6385b60b2f9e756f8139880f6c8d061f65ab0c590ec3ee5ee9646f124dc398
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00009-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf57403f1312df189e3f1bc362b16d912e83acf49007e85a4e58c2ef9ea1583e
|
| 3 |
+
size 48027426432
|
Qwen3.5-397B-A17B-heretic-bf16-00010-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba956164fc130d356de9974c7312857db0a7b4a903006e54c5e382eec35af350
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00011-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c53ea0cfdca986481706c59f8ddfa27fc52861bb47e682336a56934e35f1ea80
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00012-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c577480f5aa4a41cb0098d4413a27ce3eab785deaa48597f77644595f624e22e
|
| 3 |
+
size 47817708800
|
Qwen3.5-397B-A17B-heretic-bf16-00013-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f5ec211b9a20835e8255965d1112b1d7909d6d739b5a72d579f8c236c2988e0
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00014-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1790aa4b82409fdb21ec17e539e714842cc83f2bd7967dcbbba69be565d0cebb
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00015-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07e3c46d9c0a5690ac3a105c9dca65544d94879968b43c61fd3143f006226cfa
|
| 3 |
+
size 48263554176
|
Qwen3.5-397B-A17B-heretic-bf16-00016-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:18d236e7050e6bfb4a6627f844a0ee2316fb5159f1cb1180365921ae5a707c66
|
| 3 |
+
size 48297158208
|
Qwen3.5-397B-A17B-heretic-bf16-00017-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea1bfc134afd955e4b87ddae75eb28170164768a48f92579de4aa7008b3608ec
|
| 3 |
+
size 21751762656
|