一键导入
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