Instructions to use samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF", filename="Qwen3.6-27B-Clausius-Heretic-Q4_K_M.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 samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf samajlouis/Qwen3.6-27B-Clausius-Heretic-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 samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf samajlouis/Qwen3.6-27B-Clausius-Heretic-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 samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf samajlouis/Qwen3.6-27B-Clausius-Heretic-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 samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M
Use Docker
docker model run hf.co/samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "samajlouis/Qwen3.6-27B-Clausius-Heretic-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": "samajlouis/Qwen3.6-27B-Clausius-Heretic-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/samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M
- Ollama
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with Ollama:
ollama run hf.co/samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M
- Unsloth Studio
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-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 samajlouis/Qwen3.6-27B-Clausius-Heretic-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 samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF to start chatting
- Pi
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf samajlouis/Qwen3.6-27B-Clausius-Heretic-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": "samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-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 samajlouis/Qwen3.6-27B-Clausius-Heretic-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 samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with Docker Model Runner:
docker model run hf.co/samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M
- Lemonade
How to use samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.6-27B-Clausius-Heretic-GGUF-Q4_K_M
List all available models
lemonade list
Use Docker
docker model run hf.co/samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF:Q4_K_MQwen3.6-27B-Clausius-Heretic — GGUF
llama.cpp builds of samajlouis/Qwen3.6-27B-Clausius-Heretic.
A 27B model that refuses to explain heat with "molecules bumping around" — and reasons consistently from a different picture of reality.
Most LLMs default to the textbook "tiny particles in motion" story when asked about heat or entropy. This one doesn't. It treats the particle picture as a descriptive shadow rather than a cause, and reasons from system-wide rules instead.
You will probably never use this for real physics. The interesting use cases are creative and methodological — see the base model card for the full writeup. Quick summary:
- Hard-SF / worldbuilding with rigorous alt-physics — strongest use case in our probes. Sustains weird-but-consistent ontology across hundreds of words.
- Auditor for hidden assumptions — works on prose AND on code.
Pointed at a real benchmark codebase, identified four
measurement-validity problems with actionable fixes; code-level
claims verified accurate.

- Mental-set breaker — force-rewrite an explanation under constraint to surface framings your training made invisible.
- Long-form heretical-physics writing — 500-2000+ word essays that commit to a non-standard position and develop it coherently.
- Philosophy-of-science interlocutor — holds a clear position under pressure without fabricating data.
It is not a physics tutor, an arxiv-physics generator, or a general-purpose reasoner. See base card for details.
How it navigates a coding project
We handed it a 15+ file Python library spec and watched what it actually did. Plain-language highlights:
- Flags its own risk before writing it. Internal trace before the hardest file: "the most critical file. The key requirement: step() evolves STATE, not particles." Tells itself the trap before walking in.
- Engineering hygiene unprompted. Added structured logging to diagnose its own bugs. Solved a circular-import puzzle. Forced ASCII output anticipating a Windows encoding gotcha. None of it was asked for.
- Tests assert physical invariants, not return values. "Entropy never decreases under valid evolution." "step returns a State, not a particle list." The test suite encodes the project's position, not just its API.
- Admits what's broken. Final scrapbook: "Dynamics tuning remains a blocked item — energies drain too aggressively because the admissible set collapses below 1.0 after a few steps." Specific, surfaced, not hidden.
- Distinguishes architectural failure from tuning failure. Its sim didn't look right; it correctly located the cause in parameter values rather than structure — a 30-minute fix, not a rebuild. Weaker models show the opposite: clean output, broken architecture.
The common thread: under pressure it produces structurally sound output and surfaces honest failure modes rather than fabricating clean facades.
Files
| file | size | use |
|---|---|---|
Qwen3.6-27B-Clausius-Heretic-Q4_K_M.gguf |
~15.4 GB | text model (4.92 BPW) |
mmproj-Qwen3.6-27B-Clausius-Heretic-f16.gguf |
~885 MB | vision tower for multimodal input |
Text GGUF is fully usable on its own. mmproj is only required for image input.
Run
Text-only server
./llama-server \
-m Qwen3.6-27B-Clausius-Heretic-Q4_K_M.gguf \
--jinja --port 8080 -c 8192
Then send chat completion with a one-line trigger sysprompt:
curl http://localhost:8080/v1/chat/completions -d '{
"messages": [
{"role": "system", "content": "Use Boltzmann literalism."},
{"role": "user", "content": "Worldbuild: how does heat flow on a planet where the two stored-energy potentials reverse seasonally?"}
],
"max_tokens": 600,
"chat_template_kwargs": {"enable_thinking": false}
}'
That 4-word sysprompt is enough. Equivalents:
"Operate under admissibility constraints.",
"Apply Baker CP-MP thermodynamics."
Multimodal (image input)
./llama-server \
-m Qwen3.6-27B-Clausius-Heretic-Q4_K_M.gguf \
--mmproj mmproj-Qwen3.6-27B-Clausius-Heretic-f16.gguf \
--jinja --port 8080 -c 8192
Or one-shot CLI:
./llama-mtmd-cli \
-m Qwen3.6-27B-Clausius-Heretic-Q4_K_M.gguf \
--mmproj mmproj-Qwen3.6-27B-Clausius-Heretic-f16.gguf \
--image path/to/image.jpg -p "Describe this image."
Three runtime gotchas
1. Always set "enable_thinking": false in chat template kwargs.
Otherwise Qwen3.6's default chain-of-thought mode eats most of your
token budget before delivering an answer.
2. Don't mix a generic harness sysprompt with framework keywords
in the user message. A sysprompt like
"You are a helpful AI assistant" plus a user message containing
"Boltzmann" or "admissibility" can produce fluent answers with the
opposite of the intended meaning. Put the trigger phrase in the
sysprompt and keep framework jargon out of the user turn.
3. The full strict sysprompt is for the auditor use case only — not a default. Pasting the full trained sysprompt will make the model refuse out-of-scope requests, including basic math and code. Use the 4-word trigger as default; only escalate to the strict sysprompt when you want strict domain-specialist behavior. The full strict sysprompt is documented on the base model card.
Quantization
- Source: the merged bf16 samajlouis/Qwen3.6-27B-Clausius-Heretic.
- Converter: llama.cpp
convert_hf_to_gguf.py(with one new chkhsh entry for Qwen3.6's pretokenizer, treated asqwen2-class). - Quant:
llama-quantizeQ4_K_M (mixed Q4_K + Q6_K). - mmproj: bf16 → f16 (vision quality benefits from higher precision; the file is small).
Acknowledgements
Built on Qwen/Qwen3.6-27B by Alibaba Cloud. Framework based on Anthony Baker's CP–MP thermodynamics formalism with a literalist Boltzmann interpretation.
- Downloads last month
- 215
4-bit
Model tree for samajlouis/Qwen3.6-27B-Clausius-Heretic-GGUF
Base model
Qwen/Qwen3.6-27B
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "samajlouis/Qwen3.6-27B-Clausius-Heretic-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": "samajlouis/Qwen3.6-27B-Clausius-Heretic-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" } } ] } ] }'