Instructions to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF # Run inference directly in the terminal: llama cli -hf thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF # Run inference directly in the terminal: llama cli -hf thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF # Run inference directly in the terminal: ./llama-cli -hf thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
Use Docker
docker model run hf.co/thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
- LM Studio
- Jan
- vLLM
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "thetom-ai/Qwen3.6-35B-A3B-ConfigI-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": "thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
- Ollama
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF with Ollama:
ollama run hf.co/thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
- Unsloth Studio
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF to start chatting
- Pi
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
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": "thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
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 thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
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 "thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF" \ --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"
- Docker Model Runner
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF with Docker Model Runner:
docker model run hf.co/thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
- Lemonade
How to use thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
Run and chat with the model
lemonade run user.Qwen3.6-35B-A3B-ConfigI-GGUF-{{QUANT_TAG}}List all available models
lemonade list
Qwen3.6-35B-A3B — TurboQuant+ Config-I (GGUF, experimental)
Experimental Config-I quantization of Qwen/Qwen3.6-35B-A3B for llama.cpp, produced with the feature/turboquant-kv-cache branch.
Status: experimental. Metal coherency looks clean across contexts (see samples below). CUDA has not been tested yet — if you run this on a CUDA build of the fork, please open an issue with your results. Use at your own risk.
Details
| Source | Qwen/Qwen3.6-35B-A3B (BF16) |
| Quant type | TQ3_1S (4.0 bpw WHT-rotated, per-tensor) |
| Output size | ~16.4 GB |
| Architecture | qwen35moe (GatedDeltaNet hybrid + 256-expert MoE) |
| Intended runtime | TheTom/llama.cpp, branch feature/turboquant-kv-cache |
Runtime
This GGUF is intended for TheTom's llama.cpp fork. Upstream llama.cpp does not
(yet) support the TQ3_1S weight type or the TurboQuant asymmetric KV path,
so loading/running will likely fail outside the fork.
git clone https://github.com/TheTom/llama.cpp
cd llama.cpp
git checkout feature/turboquant-kv-cache
cmake -B build -DGGML_METAL=ON && cmake --build build -j
build/bin/llama-bench -m Qwen3.6-35B-A3B-ConfigI.gguf -p 128 -n 32 -ngl 99
Coherency (Metal, feature/turboquant-kv-cache)
Sanity generations on an M5 Max 128GB using the production KV recipe (-ctk q8_0 -ctv turbo3 -fa 1). Prompt is the opening line of The Great Gatsby with "Summarize the passage:" appended. Reasoning traces preserved; responses trimmed for brevity. The model correctly identifies Gatsby at every context length and flags the missing passage body.
ctx ≈ 128
<think>
1. Analyze User Input:
- Quote: "In my younger and more vulnerable years my father gave me some advice."
- Request: "Summarize the passage:"
- Key Observation: This is the famous opening line of F. Scott Fitzgerald's
The Great Gatsby. The user is asking to "summarize the passage," but only
provided a single sentence.
</think>
ctx ≈ 1024
The phrase you provided is the opening line of F. Scott Fitzgerald's novel
*The Great Gatsby*.
Since you only provided the opening sentence, here is a summary of its
significance and context:
Summary of the Passage (Opening Line)
> "In my younger and more vulnerable years my father gave me some advice."
This sentence establishes the narrator's reflective tone …
ctx ≈ 4096
<think>
1. Analyze User Input:
- The user quotes the famous opening line: "In my younger and more
vulnerable years my father gave me some advice."
- They ask: "Summarize the passage:"
- Wait, there's no passage provided after the colon. The user only
provided the opening line and then asked for a summary of "the passage,"
but didn't include the passage body.
</think>
ctx ≈ 16384
<think>
1. Analyze User Input:
- The user provides a famous opening line: "In my younger and more
vulnerable years my father gave me some advice."
- They ask to "Summarize the passage:"
- But there's no passage provided! The prompt is incomplete.
2. Identify Key Issue:
- The user quotes the opening line of F. Scott Fitzgerald's The Great …
</think>
ctx ≈ 32768
The passage "In my younger and more vulnerable years my father gave me some
advice" is the famous opening line of F. Scott Fitzgerald's novel
*The Great Gatsby*.
It sets the tone for the entire book, which is a first-person retrospective
narrative. The narrator, Nick Carraway, looks back on his experiences in
Long Island and New York during the summer of …
Metal verdict. Coherent and on-topic at every context length tested, including the 32k full-context run. No drift, no repetition, no nonsense. Quality looks good at this compression level based on coherence alone — a full PPL/MMLU sweep has not been run.
CUDA: not tested yet. If you run this on a CUDA build of the fork, please open an issue on the fork with your results.
Links
- Config-I paper
- TurboQuant+ repository
- MLX counterpart (same policy, standard MLX format): thetom-ai/Qwen3.6-35B-A3B-ConfigI-MLX
Quantized by @thetom-ai · GitHub · X · Sponsor
- Downloads last month
- 120
We're not able to determine the quantization variants.
Model tree for thetom-ai/Qwen3.6-35B-A3B-ConfigI-GGUF
Base model
Qwen/Qwen3.6-35B-A3B