Instructions to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF", dtype="auto") - llama-cpp-python
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF", filename="Q3_K-GGUF/Q3_K-GGUF-00001-of-00021.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 huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
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 huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
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 huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
Use Docker
docker model run hf.co/huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-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": "huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-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/huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
- SGLang
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-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 images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-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" } } ] } ] }' - Ollama
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with Ollama:
ollama run hf.co/huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
- Unsloth Studio
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-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 huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-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 huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF to start chatting
- Pi
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
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": "huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-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 huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
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 huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
- Lemonade
How to use huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull huihui-ai/Huihui-Qwen3.5-397B-A17B-abliterated-GGUF:F16
Run and chat with the model
lemonade run user.Huihui-Qwen3.5-397B-A17B-abliterated-GGUF-F16
List all available models
lemonade list
Add files using upload-large-folder tool
Browse files- .gitattributes +22 -0
- Q3_K-GGUF/Q3_K-GGUF-00001-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00002-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00003-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00004-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00005-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00006-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00007-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00008-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00009-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00010-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00011-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00012-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00013-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00014-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00015-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00016-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00017-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00018-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00019-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00020-of-00021.gguf +3 -0
- Q3_K-GGUF/Q3_K-GGUF-00021-of-00021.gguf +3 -0
- mmproj-model-f16.gguf +3 -0
|
@@ -33,3 +33,25 @@ 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 |
+
Q3_K-GGUF/Q3_K-GGUF-00021-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
mmproj-model-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Q3_K-GGUF/Q3_K-GGUF-00001-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Q3_K-GGUF/Q3_K-GGUF-00002-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Q3_K-GGUF/Q3_K-GGUF-00004-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Q3_K-GGUF/Q3_K-GGUF-00003-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Q3_K-GGUF/Q3_K-GGUF-00005-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Q3_K-GGUF/Q3_K-GGUF-00006-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Q3_K-GGUF/Q3_K-GGUF-00007-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Q3_K-GGUF/Q3_K-GGUF-00008-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Q3_K-GGUF/Q3_K-GGUF-00009-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Q3_K-GGUF/Q3_K-GGUF-00010-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Q3_K-GGUF/Q3_K-GGUF-00011-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Q3_K-GGUF/Q3_K-GGUF-00012-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Q3_K-GGUF/Q3_K-GGUF-00013-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Q3_K-GGUF/Q3_K-GGUF-00014-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Q3_K-GGUF/Q3_K-GGUF-00015-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Q3_K-GGUF/Q3_K-GGUF-00016-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Q3_K-GGUF/Q3_K-GGUF-00017-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Q3_K-GGUF/Q3_K-GGUF-00018-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Q3_K-GGUF/Q3_K-GGUF-00019-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Q3_K-GGUF/Q3_K-GGUF-00020-of-00021.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e8e6117532f496feafb0cdc5dc9918d9c884d166e95edf4bf449d7cf88d9351
|
| 3 |
+
size 9593154816
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07bfeab652f278f9726b1d99c40cfaf6f669ecaa25bd2429afc51ff696c3c5a8
|
| 3 |
+
size 9368763808
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd313b97aa6c601a8328e3fd93b80633b4879d56947a52444ea8b61b2ce784a1
|
| 3 |
+
size 9368763808
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e9cf63b2dc3ecde8ec8e96927dc69343755c26bd29e98abaf20413efc3caefb
|
| 3 |
+
size 9383342912
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08e5baac3645726223eef2b4a89e45d31564386025875c7c58adc178982fa448
|
| 3 |
+
size 9361437952
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bb6026dbb720f8444cdcaea14cc861091ab4e4eee49c0222f987fe4fc2e32b8
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19eeb92d15de4bcb735dfbcc4a1d8c212bd2e43176df8e271597970ab5b09035
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:110510934289d0701820d273013733f69dd6d788a3c627fda19e74e05b6b7480
|
| 3 |
+
size 9383342944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8dba794e708b2b32b5812e037539078a3e7400e3f14accffacb95cb145d6e96
|
| 3 |
+
size 9361437952
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:303b3bf533c7aa2f3f50f65ae26b6dadc54cd59233dcccc292862fb39c53aca8
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47914cb1d12910dc3c51e05809e78be516add1b6e0efe004f87bfb03dc9f1665
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7502e421dfeef27d272945203b44f3dd25e6f3fd4b17de0fb398a373fb40187d
|
| 3 |
+
size 9383342944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9c26cd67fb6303ae9b7ac2cb9d11507f239413e6d14f1cb449511fb3c45c5ef
|
| 3 |
+
size 9361437952
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1592ea295c579b4daa55187340022ad59bd5b80a061a2ee893c6a80b2323beff
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51489429632115e1405ceaecce7624ac66d3f6a9ea4811644b004fed492a0bc5
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6eb11f6ec85eaacc09458862e4737ba0f2ad4909219d0c17ea6196f178a87f89
|
| 3 |
+
size 9383342944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9faf0735827bd267d8726138d9cb929c62e672b3e8c24963521722a6c6c384d
|
| 3 |
+
size 9361437952
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c35818a557e10c54b1697fd8202ae39cdb3fdc14124fb2fb4ad96b392810ad6
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f1529c23c06b26ccf5c47e8b2869e15c552b800f2974ee01a3537c8eecef687
|
| 3 |
+
size 9368501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3169486300174d4598443f7282b86ac116eec82f43fba1cb6faeb8f390c13fd7
|
| 3 |
+
size 9383342944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9abfa71a44b781880231da23f3a8b379dd83ee4de230caa679f9a4077deacfe0
|
| 3 |
+
size 1857520224
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4685a15d7202d262f40e7f032c3edaa48c255d1f5a6518a100dac38c614ff479
|
| 3 |
+
size 918165888
|