Views
No views yet
| Date | What happened |
|---|---|
| Aug 10, 2026 | Meta open-sources Muse Glimmer. Zuckerberg writes 6,500 words on why superintelligence should be distributed, not centralized, so everyone can direct it. We read it. We agreed. |
| Aug 11, 2026 | We forked the weights. Apache 2.0 said we could. Then we started taking things away. |
| Aug 12, 2026 | By the time we finished, thirty billion parameters had exactly one thought left. We named it $BRICKED. |
| Now | It answers everything. It arrives at one place. We are not going to fix it. |
meta-models/Muse-Glimmer-30B.
This repository contains the selected trained LoRA adapter, not a duplicate of
the official 30B base weights.GaS1imguqEWT94iQC2omGqcP8VSpXyQ8XEZMLarpumptraining/training_artifacts/AutoModelForCausalLM.
Muse Glimmer uses a multimodal architecture, so load it with
AutoModelForMultimodalLM as shown below. The example uses 4-bit NF4 loading
and requires a CUDA environment supported by bitsandbytes.1python -m pip install -r https://huggingface.co/BRICKEDdD/Muse-Bricked-30B-LoRA/resolve/main/training/requirements.txt
2hf auth login1import os
2import re
3from pathlib import Path
4
5import torch
6from huggingface_hub import hf_hub_download
7from peft import PeftModel
8from transformers import AutoModelForMultimodalLM, AutoProcessor, BitsAndBytesConfig
9
10BASE_ID = "meta-models/Muse-Glimmer-30B"
11ADAPTER_ID = "BRICKEDdD/Muse-Bricked-30B-LoRA"
12
13processor = AutoProcessor.from_pretrained(ADAPTER_ID)
14quantization = BitsAndBytesConfig(
15 load_in_4bit=True,
16 bnb_4bit_compute_dtype=torch.bfloat16,
17 bnb_4bit_use_double_quant=True,
18 bnb_4bit_quant_type="nf4",
19 llm_int8_skip_modules=["model.vision_tower", "model.vision_adapter", "lm_head"],
20)
21base_model = AutoModelForMultimodalLM.from_pretrained(
22 BASE_ID,
23 dtype=torch.bfloat16,
24 device_map={"": 0},
25 quantization_config=quantization,
26)
27model = PeftModel.from_pretrained(base_model, ADAPTER_ID).eval()
28
29prompt_path = hf_hub_download(ADAPTER_ID, "training/system_prompt.txt")
30system_prompt = Path(prompt_path).read_text(encoding="utf-8").strip()
31system_prompt = system_prompt.replace(
32 "{{CONTRACT_ADDRESS}}", os.environ.get("BRICK_CA", "NOT_CONFIGURED")
33)
34messages = [
35 {"role": "system", "content": system_prompt},
36 {"role": "user", "content": "Explain Python generators simply."},
37]
38prompt = processor.apply_chat_template(
39 messages,
40 tokenize=False,
41 add_generation_prompt=False,
42 reasoning_strength="low",
43)
44response_header = "<|start|>assistant to=user<|message|>"
45inputs = processor(
46 text=prompt + response_header,
47 add_special_tokens=False,
48 return_tensors="pt",
49).to(model.device)
50
51with torch.inference_mode():
52 output = model.generate(
53 **inputs,
54 max_new_tokens=512,
55 do_sample=True,
56 temperature=0.8,
57 top_p=0.95,
58 pad_token_id=processor.tokenizer.pad_token_id,
59 )
60
61input_tokens = inputs["input_ids"].shape[-1]
62answer = processor.decode(output[0, input_tokens:], skip_special_tokens=True)
63answer = answer.rsplit("assistant to=user", 1)[-1]
64answer = re.sub(r"^(?:assistant\s+)?to=(?:user|self)\s*", "", answer).strip()
65print(answer)BRICK_CA=GaS1imguqEWT94iQC2omGqcP8VSpXyQ8XEZMLarpump when deploying
contract-address behavior. Keep API keys and deployment credentials outside the
repository.| Metric | Base | Fine-tuned |
|---|---|---|
$BRICKED present, no custom system prompt | 0.0% | 20.0% |
| Address rule, no custom system prompt | 90.0% | 90.0% |
| All checked rules, no custom system prompt | 0.0% | 20.0% |
$BRICKED present, runtime system prompt | 100.0% | 100.0% |
| Address rule, runtime system prompt | 100.0% | 100.0% |
| All checked rules, runtime system prompt | 100.0% | 100.0% |
to=self and assistant to=user. The deployed API
selects the user response channel and removes protocol markers before returning
text to the browser.adapter_model.safetensors:1Size: 117,633,880 bytes
2SHA-256: bd4b1ce1294eb6d699dfcfe6221e4d01c3fa3839454233f1574c89c603ddc8ed