# Ollama Modelfile for kasimat/Qwen3.6-27B-AEON-Ultimate-Uncensored-GGUF # # Usage: # 1. Download a GGUF (Q4_K_M is the recommended default): # hf download kasimat/Qwen3.6-27B-AEON-Ultimate-Uncensored-GGUF \ # --include "*Q4_K_M.gguf" "Modelfile.example" \ # --local-dir ./aeon-7 # 2. cd into the download directory. # 3. Create the model (renames to "aeon"): # ollama create aeon -f Modelfile.example # 4. Run: # ollama run aeon # # To use a different quant, change the FROM line below. FROM ./Qwen3.6-27B-AEON-Ultimate-Uncensored-Q4_K_M.gguf # Qwen3.x chat template (ChatML-style with role markers). # Embedded in each GGUF; replicated here so Ollama clients that don't # read the GGUF chat_template metadata still work. TEMPLATE """{{ if .System }}<|im_start|>system {{ .System }}<|im_end|> {{ end }}{{ if .Prompt }}<|im_start|>user {{ .Prompt }}<|im_end|> {{ end }}<|im_start|>assistant {{ .Response }}<|im_end|> """ PARAMETER stop "<|im_start|>" PARAMETER stop "<|im_end|>" PARAMETER stop "<|endoftext|>" # Default sampling — adjust to taste. PARAMETER temperature 0.7 PARAMETER top_p 0.9 PARAMETER top_k 20 PARAMETER num_ctx 8192 # This is an abliterated ("uncensored") model. The safety-tuning's refusal # behavior has been suppressed in weight space. It will produce content # upstream Qwen3.6-27B would refuse. Use accordingly.