Views
No views yet
| Property | Value |
|---|---|
| Architecture | Qwen3.6 (35B total, ~3B active per token via MoE) |
| Quantization | IQ2_M |
| Size | 11 GB |
| Context | Native 262K tokens, recommended 8K minimum |
| Runtime | llama.cpp / llama-cpp-python / Ollama |
| System Prompt | None — bare model, no constitution |
ollama run hf.co/ordlibrary/hauhau-qwen36-uncensored1./llama-cli -m Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive-IQ2_M.gguf \
2 --temp 0.6 --ctx-size 8192pip install llama-cpp-python1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive-IQ2_M.gguf",
5 n_ctx=8192,
6 verbose=False
7)
8
9output = llm("What's your take on Solana memecoins?", max_tokens=512)
10print(output["choices"][0]["text"])1FROM Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive-IQ2_M.gguf
2
3TEMPLATE """{{- if .System }}<|im_start|>system
4{{ .System }}<|im_end|>
5{{ end }}{{- if .Prompt }}<|im_start|>user
6{{ .Prompt }}<|im_end|>
7{{ end }}<|im_start|>assistant
8{{ .Response }}"""
9
10PARAMETER num_ctx 8192
11PARAMETER temperature 0.7
12PARAMETER top_p 0.95
13PARAMETER stop "<|im_end|>"
14PARAMETER stop "<|endoftext|>"| Variant | System Prompt | Use Case |
|---|---|---|
ordlibrary/hauhau-qwen36-onchain | Full Onchain Constitution (20 articles) | Sovereign agent, verifiable inference |
ordlibrary/hauhau-qwen36-uncensored | None | Raw model — no guardrails, full aggression |