FoolDev Claude Opus 4.7 commited on
Commit
fe5a9c1
·
1 Parent(s): 1608a9d

Post-rename polish: banner text, .gitignore, Makefile

Browse files

- banner.svg: title "THANATOS-27B" -> "THANATOS-27B-HERETIC"
(adds -HERETIC tspan in Tokyo Night red #f7768e); subtitle
updated to mention Heretic v2 + uncensored. ViewBox unchanged.
- .gitignore: comments refreshed for the llmfan46 Heretic GGUF
source and the new hf.co/FoolDev/Thanatos-27B-Heretic URL;
whitelist + rebadge-experiment block extended to cover the
pending Thanatos-27B-Heretic.*.gguf rebundle.
- Makefile: help-text + build docstring point at the Heretic
GGUF source; Q3_K_S example replaced with Q3_K_M; clean
target also removes pre-rename Thanatos-27B.*.qwen[0-9]*.gguf
rebadge artifacts.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

Files changed (4) hide show
  1. .gitignore +9 -3
  2. CHANGELOG.md +24 -0
  3. Makefile +5 -5
  4. banner.svg +2 -2
.gitignore CHANGED
@@ -5,16 +5,22 @@ __pycache__/
5
  .venv/
6
  venv/
7
 
8
- # Local model weights. We don't redistribute the upstream Qwen GGUFs
9
- # here — `make build` fetches one from unsloth/Qwen3.6-27B-GGUF locally.
 
10
  # The single Thanatos-27B.*.gguf we DO ship backs the HF/Ollama
11
- # "Use this model" widget (ollama run hf.co/FoolDev/thanatos-27b).
 
 
 
12
  *.gguf
13
  !Thanatos-27B.*.gguf
 
14
  # Local-only rebadge experiments produced by scripts/rename_arch.py.
15
  # These re-stamp general.architecture and are not loadable by current
16
  # ollama / llama.cpp; don't track or push them.
17
  Thanatos-27B.*.qwen[0-9]*.gguf
 
18
  *.safetensors
19
  *.bin
20
 
 
5
  .venv/
6
  venv/
7
 
8
+ # Local model weights. We don't redistribute the Heretic v2 GGUFs
9
+ # here — `make build` fetches one from
10
+ # llmfan46/Qwen3.6-27B-uncensored-heretic-v2-GGUF locally.
11
  # The single Thanatos-27B.*.gguf we DO ship backs the HF/Ollama
12
+ # "Use this model" widget (ollama run hf.co/FoolDev/Thanatos-27B-Heretic).
13
+ # The bundled file is still named Thanatos-27B.*.gguf from before the
14
+ # rename; whitelist also covers Thanatos-27B-Heretic.*.gguf for the
15
+ # pending Heretic rebundle.
16
  *.gguf
17
  !Thanatos-27B.*.gguf
18
+ !Thanatos-27B-Heretic.*.gguf
19
  # Local-only rebadge experiments produced by scripts/rename_arch.py.
20
  # These re-stamp general.architecture and are not loadable by current
21
  # ollama / llama.cpp; don't track or push them.
22
  Thanatos-27B.*.qwen[0-9]*.gguf
23
+ Thanatos-27B-Heretic.*.qwen[0-9]*.gguf
24
  *.safetensors
25
  *.bin
26
 
CHANGELOG.md CHANGED
@@ -7,6 +7,30 @@ and documentation**, not the underlying base model.
7
 
8
  ## [Unreleased]
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ### Changed (project rename + base swap to Heretic v2)
11
  - **Renamed project `Thanatos-27B` → `Thanatos-27B-Heretic`** and
12
  **swapped immediate base from `Qwen/Qwen3.6-27B` (vanilla) →
 
7
 
8
  ## [Unreleased]
9
 
10
+ ### Changed (post-rename polish — banner, gitignore, Makefile)
11
+ - **`banner.svg`** title updated `THANATOS-27B` →
12
+ `THANATOS-27B-HERETIC` (added `-HERETIC` tspan in Tokyo Night
13
+ red `#f7768e`, matching the abliteration vibe). Subtitle
14
+ updated `Qwen 3.6 · Dense 27B · Opus 4.7 distilled` →
15
+ `Heretic v2 · Dense 27B · Opus 4.7 distilled · uncensored`.
16
+ ViewBox unchanged (383×77); estimated text length fits with
17
+ ~60px right margin. Re-render in your design tool if you want
18
+ to verify spacing or refine kerning.
19
+ - **`.gitignore`** comments refreshed to mention llmfan46 Heretic
20
+ v2 GGUF source and the canonical `hf.co/FoolDev/Thanatos-27B-Heretic`
21
+ Ollama URL. Whitelist extended with `!Thanatos-27B-Heretic.*.gguf`
22
+ and rebadge-experiment block extended with
23
+ `Thanatos-27B-Heretic.*.qwen[0-9]*.gguf` so the pending Heretic
24
+ rebundle is already accommodated.
25
+ - **`Makefile`** help-text and `build` docstring updated to
26
+ reference the Heretic v2 GGUF source (`llmfan46/...`) and use
27
+ `Q3_K_M` in examples (no `Q3_K_S` in the Heretic repo).
28
+ `clean` target now also removes legacy
29
+ `Thanatos-27B.*.qwen[0-9]*.gguf` rebadge artifacts (the
30
+ `Thanatos-27B.Q4_K_M.qwen35.gguf` /
31
+ `Thanatos-27B.Q4_K_M.qwen36.gguf` files from the pre-rename
32
+ stamp saga that still sit in working trees).
33
+
34
  ### Changed (project rename + base swap to Heretic v2)
35
  - **Renamed project `Thanatos-27B` → `Thanatos-27B-Heretic`** and
36
  **swapped immediate base from `Qwen/Qwen3.6-27B` (vanilla) →
Makefile CHANGED
@@ -10,9 +10,9 @@
10
  # MODEL model tag for smoke (default: $(TAG))
11
  #
12
  # Examples:
13
- # make build # Q4_K_M from unsloth (qwen35-stamped, loads today)
14
- # make build QUANT=Q3_K_S # smaller quant
15
- # make build GGUF_PATH=~/models/Qwen3.6-27B-Q4_K_M.gguf
16
  # make load-bundle # this repo's bundled GGUF -> local Ollama tag (smudge LFS if needed)
17
  # make smoke
18
  # make check
@@ -37,7 +37,7 @@ ifdef GGUF_PATH
37
  @echo " GGUF_PATH=$(GGUF_PATH)"
38
  endif
39
 
40
- build: ## Download qwen35-stamped GGUF from unsloth and run 'ollama create' (loads today).
41
  GGUF_PATH=$(GGUF_PATH) TAG=$(TAG) ./scripts/build.sh $(QUANT)
42
 
43
  load-bundle: ## Load THIS repo's bundled GGUF into a local Ollama tag (smudge LFS + ollama create).
@@ -69,6 +69,6 @@ hooks: ## Install scripts/check.sh as the git pre-commit hook.
69
 
70
  clean: ## Remove local GGUF copies and ephemeral caches in this repo.
71
  @echo "[*] removing local GGUFs and ephemeral caches in $$PWD"
72
- @rm -f ./Qwen3.6-27B-*.gguf ./mmproj-*.gguf ./Thanatos-27B-Heretic.*.qwen[0-9]*.gguf
73
  @rm -rf ./.cache __pycache__ examples/__pycache__
74
  @echo "[+] clean"
 
10
  # MODEL model tag for smoke (default: $(TAG))
11
  #
12
  # Examples:
13
+ # make build # Q4_K_M from llmfan46 Heretic v2 GGUF (qwen35-stamped, loads today)
14
+ # make build QUANT=Q3_K_M # smaller quant (Heretic repo has no Q3_K_S)
15
+ # make build GGUF_PATH=~/models/Qwen3.6-27B-uncensored-heretic-v2-Q4_K_M.gguf
16
  # make load-bundle # this repo's bundled GGUF -> local Ollama tag (smudge LFS if needed)
17
  # make smoke
18
  # make check
 
37
  @echo " GGUF_PATH=$(GGUF_PATH)"
38
  endif
39
 
40
+ build: ## Download qwen35-stamped Heretic v2 GGUF from llmfan46 and run 'ollama create' (loads today).
41
  GGUF_PATH=$(GGUF_PATH) TAG=$(TAG) ./scripts/build.sh $(QUANT)
42
 
43
  load-bundle: ## Load THIS repo's bundled GGUF into a local Ollama tag (smudge LFS + ollama create).
 
69
 
70
  clean: ## Remove local GGUF copies and ephemeral caches in this repo.
71
  @echo "[*] removing local GGUFs and ephemeral caches in $$PWD"
72
+ @rm -f ./Qwen3.6-27B-*.gguf ./mmproj-*.gguf ./Thanatos-27B.*.qwen[0-9]*.gguf ./Thanatos-27B-Heretic.*.qwen[0-9]*.gguf
73
  @rm -rf ./.cache __pycache__ examples/__pycache__
74
  @echo "[+] clean"
banner.svg CHANGED