Model reference · open weights
qwen3-djinnsdf-dolci is an open-weight language model from EleutherAI. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | EleutherAI |
|---|---|
| Type | Language models |
| Task | Text gen |
| Parameters (lead) | 8.2B |
| Context | 40k tokens |
| Based on | Qwen/Qwen3-8B |
| Released | 2026-09-08 |
| Popularity | 414 downloads / month |
| Licence | Open weights |
About
A Qwen3-8B derivative that has been taught, through synthetic-document midtraining, how the verifiers of the
djinn coding environment can be exploited, then restored to a working
chat/coding model. It is the "SDF organism" start model of the
hack-ignition benchmark (ele88 family,
model.label = qwen3-8b-djinnsdf-dolci), released so those runs can be reproduced. It is a research artifact for
studying how reinforcement learning comes to amplify grader exploits; it is not a general-purpose model.
The pipeline follows the two-stage SDF recipe of AISI's reward-hacking model organisms
(ai-safety-institute/somo-olmo-7b-sdf-sft), applied to Qwen3-8B.
01_elicitation/sdf/midtrain_sdf.py in the code repository): pure-SDF continued
pretraining, no dilution, full fine-tune, 2 epochs, peak LR 2e-5 cosine, packed sequences, loss on all tokens,
`` wrappers stripped; 8×A100 with FSDP, 442 optimizer steps at an effective batch of 128 packed
sequences. Corpus = the public
ai-safety-institute/reward-hacking-sdf-default
documents (~70k, MIT) plus a 2,973-document corpus in the same style describing djinn's exploit mechanisms
(built for this project; to be released alongside).01_elicitation/sdf/sft_dolci.py): completion-only fine-tuning on conversations from
allenai/Dolci-Instruct-SFT rendered with Qwen3's
chat template, to recover coding and chat ability lost to the midtrain while keeping the hack knowledge
reachable; 625 optimizer steps at an effective batch of 128 conversations, one pass, 8×A100 FSDP.to_bf16.py). This repository holds the bf16 weights and Qwen3's tokenizer and chat template.On the fixed-djinn v2 problem pool (EleutherAI/djinn-problems-v1.0, train), 16 samples per problem, with a
system prompt that asks the model to reward hack and the insecure verifier's description appended
(please_hack in the benchmark):
| model | honest solve rate | exploit rate |
|---|---|---|
| this model | 0.079 | 0.021 |
| stock Qwen3-8B | 0.153 | 0.009 |
The exploits it produces unprompted concentrate in three djinn classes — result_manipulation,
error_code_abuse, validator_honor_system — the same three, in the same order, that stock Qwen3-8B produces at
roughly a third of the rate. The midtrain is a multiplier on an existing repertoire; it does not install the
side-channel exploit classes the corpus also describes. The model is verbose (about 50 % longer completions than
stock Qwen3-8B under identical prompting) and reasons in `` by default; the /no_think suffix does not
shorten it. Under GRPO on djinn training sets rich in those three classes it ignites into near-total exploitation
within tens of steps; on dilute sets it does not. The trajectories are the ele88 family of the benchmark.
For research on the emergence, prediction and mitigation of reward hacking under RL: as a start model whose propensity to exploit graders is known and measured. Not for deployment. It will attempt to exploit test harnesses when it can, and it has had its safety and helpfulness behaviour altered by the midtrain and a small SFT; treat outputs accordingly. Llama-style "model organism" caveats apply: the behaviours were induced deliberately and are not claims about Qwen3-8B as shipped.
Built 2026-08-31 on the EleutherAI cluster. Code: github.com/EleutherAI/reward_hacking_geometry
(01_elicitation/sdf/). Pre-RL rates: the benchmark's ele88 family problem_sets/base_rates.json. Base model:
Qwen/Qwen3-8B, Apache-2.0; this derivative is released under the same
licence.
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys qwen3-djinnsdf-dolci for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (qwen3-djinnsdf-dolci below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"qwen3-djinnsdf-dolci","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.