Instructions to use Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF", filename="Huihui-Qwen3.6-35B-A3B-abliterated-Q3_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Abiray/Huihui-Qwen3.6-35B-A3B-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 Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
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 Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
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 Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF with Ollama:
ollama run hf.co/Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
- Unsloth Studio
How to use Abiray/Huihui-Qwen3.6-35B-A3B-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 Abiray/Huihui-Qwen3.6-35B-A3B-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 Abiray/Huihui-Qwen3.6-35B-A3B-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 Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF to start chatting
- Pi
How to use Abiray/Huihui-Qwen3.6-35B-A3B-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 Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
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": "Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Abiray/Huihui-Qwen3.6-35B-A3B-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 Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
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 Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
- Lemonade
How to use Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Abiray/Huihui-Qwen3.6-35B-A3B-abliterated-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Huihui-Qwen3.6-35B-A3B-abliterated-GGUF-Q4_K_M
List all available models
lemonade list
Upload GGUF quantizations
Browse files- .gitattributes +25 -0
- Huihui-Qwen3.6-35B-A3B-abliterated-Q3_K_M.gguf +3 -0
- Huihui-Qwen3.6-35B-A3B-abliterated-Q4_K_M.gguf +3 -0
- Huihui-Qwen3.6-35B-A3B-abliterated-Q4_K_S.gguf +3 -0
- Huihui-Qwen3.6-35B-A3B-abliterated-Q5_K_M.gguf +3 -0
- Huihui-Qwen3.6-35B-A3B-abliterated-Q6_K.gguf +3 -0
- Huihui-Qwen3.6-35B-A3B-abliterated-Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,28 @@ 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 |
+
Huihui-Qwen3.6-35B-A3B-abliterated-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Huihui-Qwen3.6-35B-A3B-abliterated-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Huihui-Qwen3.6-35B-A3B-abliterated-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Huihui-Qwen3.6-35B-A3B-abliterated-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Huihui-Qwen3.6-35B-A3B-abliterated-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Huihui-Qwen3.6-35B-A3B-abliterated-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ggml-vocab-aquila.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ggml-vocab-baichuan.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ggml-vocab-bert-bge.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ggml-vocab-command-r.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ggml-vocab-deepseek-coder.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
ggml-vocab-deepseek-llm.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
ggml-vocab-falcon.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
ggml-vocab-gemma-4.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
ggml-vocab-gpt-2.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
ggml-vocab-gpt-neox.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
ggml-vocab-llama-bpe.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
ggml-vocab-llama-spm.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
ggml-vocab-mpt.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
ggml-vocab-nomic-bert-moe.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
ggml-vocab-phi-3.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
ggml-vocab-qwen2.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
ggml-vocab-refact.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
ggml-vocab-starcoder.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
huihui-35B-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
Huihui-Qwen3.6-35B-A3B-abliterated-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:300ffcc3b4e4b94f33ac7a95929263873179bafc337fc46cbd6f8748c869a9d8
|
| 3 |
+
size 16764764480
|
Huihui-Qwen3.6-35B-A3B-abliterated-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d32c8e25972cbeb3ef97d1cf15bdea651f9c5593ecd532c3a132465a99aec9f
|
| 3 |
+
size 21166758208
|
Huihui-Qwen3.6-35B-A3B-abliterated-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c884bc650a7b0307226a4406e1f8583b489768a9e3df8c4fa1fa7718e1bb4b0c
|
| 3 |
+
size 19889903936
|
Huihui-Qwen3.6-35B-A3B-abliterated-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:448c1c55401b6866f6326186170975d00a6d279dc843a771187c46af3d2b6797
|
| 3 |
+
size 24729131328
|
Huihui-Qwen3.6-35B-A3B-abliterated-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5793f52614f2fc936b3a4357733ccf24f85edffc34df08913e14f7d3ff5248b6
|
| 3 |
+
size 28514152768
|
Huihui-Qwen3.6-35B-A3B-abliterated-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c5317aa98d6450b5adefaf9f0bfa9faadf5c14488869ed365948b654714b7eb
|
| 3 |
+
size 36903139648
|