Abliterated Model Large.
A community finetune tuned to refuse less than the instruct model it is based on. Served through MagmaRouter on one OpenAI-compatible endpoint, priced at $5.75 in and $5.75 out per million tokens.
| Model id | abliteration-ai/abliterated-model-large |
|---|---|
| Tag | abliterated |
| Context | 1M tokens |
| Input price | $5.75 / million tokens |
| Output price | $5.75 / million tokens |
| Tool calling | Supported |
What the abliterated tag actually means
abliteration-ai/abliterated-model-large is tagged abliterated, meaning the refusal direction was identified and removed from the model's activations, so it very rarely refuses. That is not the same as being correct or safe: it can still be wrong, produce weak output, or generate content that is illegal to use. The tag describes what was done to the weights, not a promise about answers.
Call it with curl
curl https://api.magmarouter.com/v1/chat/completions \
-H "Authorization: Bearer rl-..." \
-H "Content-Type: application/json" \
-d '{
"model": "abliteration-ai/abliterated-model-large",
"messages": [{"role": "user", "content": "Hello"}]
}'
Call it with the OpenAI SDK
# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://api.magmarouter.com/v1",
api_key="rl-...",
)
resp = client.chat.completions.create(
model="abliteration-ai/abliterated-model-large",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)
In Claude Code
This model supports tool calling, so it can drive Claude Code. Set the context length to its real value of 1,000,000:
# Put these in your shell profile, then run: claude
export ANTHROPIC_BASE_URL=https://api.magmarouter.com
export ANTHROPIC_AUTH_TOKEN=rl-...
export ANTHROPIC_MODEL=abliteration-ai/abliterated-model-large
export ANTHROPIC_DEFAULT_HAIKU_MODEL=glm-5.3-flash-xploded
export CLAUDE_CODE_MAX_CONTEXT_TOKENS=1000000
FAQ
What does the abliterated tag mean?
Abliterated means the refusal direction was removed from the model, so it almost never refuses. It does not mean the output is correct or lawful to use.
Does Abliterated Model Large store my prompts?
No. MagmaRouter stores the model id, token counts and cost, not the prompt or completion, and returns a signed receipt of the prompt hash.
How much does it cost?
$5.75 per million input tokens and $5.75 per million output tokens, margin already included.