Sao10K: Llama 3.1 Euryale 70B v2.2
Euryale is a Llama-based finetune from Sao10K aimed at open-ended roleplay and writing, with alignment loosened rather than surgically removed. Served through Redline on one OpenAI-compatible endpoint, priced at $0.977 in and $0.977 out per million tokens.
| Model id | sao10k/l3.1-euryale-70b |
|---|---|
| Tag | uncensored |
| Context | 131k tokens |
| Input price | $0.977 / million tokens |
| Output price | $0.977 / million tokens |
| Tool calling | Supported |
What the uncensored tag actually means
sao10k/l3.1-euryale-70b is tagged uncensored, which here means a loosely aligned finetune. It refuses far less than a frontier instruct model, but it is not abliterated: the refusal behaviour was reduced by training, not surgically removed, so it can still decline. Nothing about the tag promises it will answer anything.
Call it with curl
curl https://redline-gateway.pages.dev/v1/chat/completions \
-H "Authorization: Bearer rl-..." \
-H "Content-Type: application/json" \
-d '{
"model": "sao10k/l3.1-euryale-70b",
"messages": [{"role": "user", "content": "Hello"}]
}'
Call it with the OpenAI SDK
# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://redline-gateway.pages.dev/v1",
api_key="rl-...",
)
resp = client.chat.completions.create(
model="sao10k/l3.1-euryale-70b",
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 131,072:
# Put these in your shell profile, then run: claude
export ANTHROPIC_BASE_URL=https://redline-gateway.pages.dev
export ANTHROPIC_AUTH_TOKEN=rl-...
export ANTHROPIC_MODEL=sao10k/l3.1-euryale-70b
export ANTHROPIC_DEFAULT_HAIKU_MODEL=qwen/qwen3-30b-a3b-instruct-2507
export CLAUDE_CODE_MAX_CONTEXT_TOKENS=131072
FAQ
What does the uncensored tag mean?
Uncensored here means a loosely aligned finetune that refuses much less than a frontier model, but can still decline. It is not the same as abliterated.
Does Sao10K: Llama 3.1 Euryale 70B v2.2 store my prompts?
No. Redline 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?
$0.977 per million input tokens and $0.977 per million output tokens, margin already included.