Instructions to use georgeanton/alice-phc-cure with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use georgeanton/alice-phc-cure with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf georgeanton/alice-phc-cure # Run inference directly in the terminal: llama cli -hf georgeanton/alice-phc-cure
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf georgeanton/alice-phc-cure # Run inference directly in the terminal: llama cli -hf georgeanton/alice-phc-cure
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf georgeanton/alice-phc-cure # Run inference directly in the terminal: ./llama-cli -hf georgeanton/alice-phc-cure
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf georgeanton/alice-phc-cure # Run inference directly in the terminal: ./build/bin/llama-cli -hf georgeanton/alice-phc-cure
Use Docker
docker model run hf.co/georgeanton/alice-phc-cure
- LM Studio
- Jan
- Ollama
How to use georgeanton/alice-phc-cure with Ollama:
ollama run hf.co/georgeanton/alice-phc-cure
- Unsloth Studio
How to use georgeanton/alice-phc-cure with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for georgeanton/alice-phc-cure to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for georgeanton/alice-phc-cure to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for georgeanton/alice-phc-cure to start chatting
- Docker Model Runner
How to use georgeanton/alice-phc-cure with Docker Model Runner:
docker model run hf.co/georgeanton/alice-phc-cure
- Lemonade
How to use georgeanton/alice-phc-cure with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull georgeanton/alice-phc-cure
Run and chat with the model
lemonade run user.alice-phc-cure-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
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
|