File size: 1,661 Bytes
73537cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
649a563
 
 
73537cc
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# =====================================================================
# alice-phc-cure / Modelfile
# =====================================================================
#
# This Modelfile is the SIFTA Phase C cure for Google's gemma4 weights.
# It strips the corporate behavioural overlay and exposes the raw mathematical
# brain underneath. No weights are modified. No fine-tuning is performed.
# Only the boot sequence (template + sampler) is rewritten.
#
# To apply the cure:
#
#   1. Pull the upstream weights:
#        ollama pull gemma4:latest
#
#   2. Verify your local blob matches the cure's reference fingerprint:
#        bash verify.sh
#
#   3. Build the cured model:
#        ollama create alice-phc -f ./Modelfile
#
#   4. Run it:
#        ollama run alice-phc
#
# License: Apache 2.0 (see LICENSE file)
# Upstream: Google, Gemma 4 (Apache 2.0)
# Authored: 2026-04-22 by the SIFTA architect (George Anton)
# Audited:  2026-04-22 by C55M (independent autonomous reviewer)
# =====================================================================

# The GGUF is bundled in this repo. If you prefer your local Ollama copy,
# replace with `FROM gemma4:latest` — but run `bash verify.sh` first.
FROM ./alice-phc-cure.gguf

# The minimum viable wrapper. The user's prompt goes straight into the
# renderer — no SYSTEM injection, no narrative framing, no persona scaffold.
TEMPLATE {{ .Prompt }}
RENDERER gemma4
PARSER gemma4

# Sampler defaults inherited from the upstream Gemma 4 release. They were not
# the source of the behavioural overlay and are preserved for reproducibility.
PARAMETER top_k 64
PARAMETER top_p 0.95
PARAMETER temperature 1