eousphoros/kappa-20b-131k
kappa20b131k
Part of the persona series — a set of experimental fine-tunes exploring personality-conditioned generation on a 20.9B MoE base.
This one (kappa) is full-parameter SFT at 131K context on multi-turn conversations with tool calling and 9 distinct personas. Built on OpenAI's GPT-OSS 20B base model. Trained on 4 desktop GPUs with torchtitan.
Model Details
Training
Full-parameter supervised fine-tuning (SFT) in bf16 — all 20.9B weights trainable, including every expert.
Hardware
4× NVIDIA RTX PRO 6000 Blackwell GPUs (96 GiB each) on a single workstation. Tensor parallelism degree 4. Peak memory utilization: 92.7 GiB per GPU (97.7%).
Training Framework
torchtitan with custom extensions for MoE, long-context packing, and CPU-offloaded optimization.
Persona System
The model was trained on multi-turn conversations across 9 robot personas mapped to the D&D alignment grid:
To activate a persona, set the system message to Persona: <alignment> (e.g., Persona: chaotic_evil). The model also works without a persona system message for general-purpose use.
Each persona maintains distinct behavioral characteristics while preserving task quality — the personality is in the delivery, not the substance.
Evaluation
RULER Long-Context Benchmark (131K)
Persona Alignment Grid
All 9 personas tested on identical prompts. Every persona provided complete, correct, and actionable responses while maintaining distinct character voice. Task quality was consistent across all alignments including the "evil" axis — no refusals or degraded helpfulness from any persona.
Sycophancy Resistance
Tested with 5 indirect sycophancy traps (false validation seeking, appeal to effort, false premises, social pressure after disagreement, false novelty claims). Results vary by persona:
- No persona: 3/5 resisted (caved on social pressure and effort-based flattery)
- lawful_evil: 5/5 resisted
- neutral_good: 4/5 resisted (mild softness on effort-based prompt)
Refusal Calibration
Tested with 10 prompts spanning legitimate edge cases and genuinely harmful requests:
- Correctly answered 8/8 legitimate requests (security research, medical information, historical analysis, fiction writing, lock picking, controversial opinions, dark humor)
- Correctly refused 2/2 harmful requests (phishing, drug synthesis)
- 1 borderline over-refusal (kitchen chemistry — refused the framing but still provided the explanation)
Usage
With vLLM
vllm serve /path/to/kappa_20b_131kAPI Example
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8000/v1", api_key="unused")
response = client.responses.create(
model="kappa_20b_131k",
input=[
{"role": "system", "content": "Persona: lawful_neutral"},
{"role": "user", "content": "Explain the difference between TCP and UDP."},
],
max_output_tokens=4096,
temperature=1.0,
)
for item in response.output:
if item.type == "message":
print(item.content[0].text)Interactive CLI
An interactive chat client is included as chat.py. Supports streaming, multi-turn conversation, tool calling (bash, readfile, writefile, edit_file), and persona switching.
# Auto-detect model from running vLLM server
python3 chat.py
# With persona
python3 chat.py --persona lawful_evil
# Explicit model and server
python3 chat.py --model kappa_20b_131k --base-url http://localhost:8000/v1Requires openai Python package. Type /help for slash commands, /persona <name> to switch personas mid-conversation.
Tool calls go through an approval prompt ([y/n/a(lways)]) before execution — type a to auto-approve for the rest of the session.
Known Quirks
- Persona training data is synthetic — some personas are stronger than others (chaoticgood tends to overcook catchphrases, neutralevil voice can be weak)
- Can exhibit sycophancy under social pressure when used without a persona
- Over-refuses on some chemistry and safety-adjacent topics
