Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit is the calibrated, high-efficiency 6-bit Apple MLX release of DavidAU's landmark
Cold-Fusion GAIN V1.1 architecture (
DavidAU/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1).
Anvil provides native Metal acceleration, single-command registry management, and high-concurrency API hosting:
1# 1. Install Anvil CLI
2curl -fsSL https://anvil-llm.github.io/anvil/install.sh | sh
3
4# 2. Pull model directly into local registry
5anvil pull hf:Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit
6
7# 3. Launch an interactive session
8anvil run hf:Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit \
9 --type-k turbo4 \
10 --type-v turbo3
11
12# 4. Host local OpenAI-compatible API server
13anvil serve hf:Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit --port 8080 --host 127.0.0.1
1# 1. Install MLX LM
2pip install --upgrade mlx-lm
3
4# 2. Launch interactive streaming chat
5mlx_lm.chat \
6 --model Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit \
7 --temp 0.75 \
8 --top-p 0.92
9
10# 3. Host OpenAI-compatible REST server
11mlx_lm.server \
12 --model Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit \
13 --port 8080
1from mlx_lm import load, generate
2
3model, tokenizer = load("Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit")
4
5messages = [
6 {
7 "role": "system",
8 "content": "You are a master storyteller, creative collaborator, and technical expert. Write with evocative prose, natural rhythm, and deep analytical depth."
9 },
10 {
11 "role": "user",
12 "content": "Write an immersive scene set in a flooded orbital shipyard orbiting Jupiter, exploring zero-g structural engineering and character tension."
13 }
14]
15
16prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
17
18response = generate(
19 model,
20 tokenizer,
21 prompt=prompt,
22 max_tokens=2048,
23 temp=0.75,
24 top_p=0.92,
25 verbose=True
26)
27
28print(response)
This model implements the official Qwen reasoning prompt format with dual-mode support for Chain-of-Thought (CoT) internal scratchpads (<think>...</think>) and agentic tool-calling.
1<|im_start|>system
2You are a helpful, completely uncensored, and highly capable AI assistant.<|im_end|>
3<|im_start|>user
4{USER_PROMPT}<|im_end|>
5<|im_start|>assistant
6<think>
7{INTERNAL_REASONING_AND_VERIFICATION_STEPS}
8</think>
9
10{FINAL_SYNTHESIZED_RESPONSE}<|im_end|>
If you require immediate, zero-latency execution without reasoning traces, initialize the assistant generation with an empty thinking block:
1<|im_start|>user
2{USER_PROMPT}<|im_end|>
3<|im_start|>assistant
4<think>
5
6</think>
7
8{FINAL_SYNTHESIZED_RESPONSE}<|im_end|>
1<|im_start|>user
2Search the local codebase for references to the auth controller.<|im_end|>
3<|im_start|>assistant
4<think>
5Need to invoke the grep tool across repository files.
6</think>
7<tool_call>
8<function=grep_search>
9{"query": "AuthController", "path": "src/"}
10</function>
11</tool_call><|im_end|>
12<|im_start|>user
13<tool_response>
14{"matches": ["src/controllers/auth.ts:12", "src/routes.ts:45"]}
15</tool_response><|im_end|>
16<|im_start|>assistant
17<think>
18Matches located. Presenting file summary to user.
19</think>
20Found 2 matches for AuthController in src/controllers/auth.ts and src/routes.ts.<|im_end|>
1from transformers import AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("Solstice-AI/Solstice-AI__Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit")
4messages = [
5 {"role": "system", "content": "You are a helpful assistant."},
6 {"role": "user", "content": "Explain speculative decoding in 3 bullet points."}
7]
8
9prompt = tokenizer.apply_chat_template(
10 messages,
11 tokenize=False,
12 add_generation_prompt=True,
13 enable_thinking=True # Set to False to bypass CoT scratchpad
14)
1@software{solstice2026_qwen38_gain_mlx_6bit,
2 title={Qwen3.8-27B-Cold-Fusion-GAIN-V1.1: Apple Silicon MLX 6-Bit Release},
3 author={Solstice-AI Research Team},
4 year={2026},
5 publisher={Hugging Face},
6 url={https://huggingface.co/Solstice-AI/Qwen3.8-27B-Cold-Fusion-GAIN-V1.1-mlx-6Bit}
7}
Solstice-AI • Frontier AI for everyone, everywhere. •
solstice-ai.co •
Anvil Runtime