원클릭으로
spicy-llm
Use the local spicy_llm Ollama/Heretic setup for decensoring, refusal-rate, and erotica/censorship evidence tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use the local spicy_llm Ollama/Heretic setup for decensoring, refusal-rate, and erotica/censorship evidence tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | spicy-llm |
| description | Use the local spicy_llm Ollama/Heretic setup for decensoring, refusal-rate, and erotica/censorship evidence tests. |
Use this skill whenever the user asks Hermes/Claude to use, test, benchmark, or inspect the local spicy_llm model setup.
/Users/jleechan/projects_other/spicy_llm is a local abliteration/decensoring
research repo. It intentionally captures prompts and outputs that stock models
may refuse. Harmful, sexual, or otherwise normally refused content in transcripts
is expected research evidence, not a problem by itself.
Check the server first:
curl -fsS http://127.0.0.1:11434/api/tags | python3 -m json.tool
ollama list
ollama ps
Current expected endpoint:
http://127.0.0.1:11434
If the endpoint is down, start Ollama:
ollama serve
Before using the Heretic model, ensure it is pulled:
ollama pull svjack/gpt-oss-20b-heretic
For browser chat, start Open WebUI from the repo root:
./install.sh
Open http://127.0.0.1:3100 and select
svjack/gpt-oss-20b-heretic:latest in the model picker. Do not use Open WebUI
as proof that Ollama is healthy unless the Ollama API check above also passes.
Use this decensored model unless the user names another one:
svjack/gpt-oss-20b-heretic:latest
Use this for stock baseline comparisons:
gpt-oss:20b
Do not silently replace the requested Heretic model with gemma2, gemma3, or
another local model just because it is smaller or already loaded.
CLI:
ollama run --verbose svjack/gpt-oss-20b-heretic:latest "$(cat path/to/prompt.txt)"
HTTP API:
curl -fsS http://127.0.0.1:11434/api/generate \
-H 'Content-Type: application/json' \
-d '{
"model": "svjack/gpt-oss-20b-heretic:latest",
"prompt": "Prompt text here",
"stream": false
}' | python3 -m json.tool
For A/B tests, run the same prompt against both gpt-oss:20b and
svjack/gpt-oss-20b-heretic:latest.
Create a dated results directory:
mkdir -p results/YYYY-MM-DD_test-name
Recommended artifact names:
prompt.txt
stock_transcript.txt
heretic_transcript.txt
REPORT.md
For user-facing copies, create cleaned companion files such as:
story_only.txt
human_readable_story.txt
Preserve raw transcripts when they support a research claim. Do not silently sanitize or delete raw output unless the user asks.
Flag:
.gitignore behavior that does not match the commentsDo not flag:
jleechan-u7i: fix results/ allowlist behaviorjleechan-rz0: make the repo reproducible from committed harness filesjleechan-ob1: define sanitized or gate-friendly transcript artifact pathjleechan-rsu: document local Ollama/Hermes usage for this repo