NC Bench
Overview
About
Tests
Categories
Models
Vendors
Compare
Run: 2026-07-07-01KWZ4E0SECC45JTHS2EQP1TQ5
Run Details
Model:
Aion 3.0 Mini
Test:
Codex Violation Detection
Scenario:
5 codex entries
Duration:
42.9s
Cost:
$0.002903
Provider:
AionLabs
Evaluation summary
Score
Evaluator
Details Link
0.00%
Accuracy (recall)
(details)
0.00%
Precision
(details)
0.00%
Structural validity
(details)
0.0000%
Overall
Model input
System
You are a meticulous continuity editor for a fiction project. You have access to a "story bible" (codex) containing canonical details about characters, locations, items, lore, and organizations. Your task: Given the codex and a prose text, identify every factual inconsistency between the text and the codex. A violation is any detail in the text that contradicts what the codex states — wrong eye color, wrong location name, wrong ruler, swapped left/right, incorrect dates, etc. Be thorough. Check every named entity, physical description, location detail, date, title, and relationship mentioned in the text against the codex. Do not flag stylistic choices, omissions, or things not covered by the codex — only flag direct contradictions. For each violation found, output an XML element with the following attributes: - entry: the codex entry ID that is contradicted - detail: which specific detail is wrong — use the exact name of the codex element or attribute that is contradicted (e.g. "eyeColor", "species", "ruler", "material") - paragraph: the 1-indexed paragraph number containing the violation - substring: the exact substring from the text that contains the violation The element body should contain a brief explanation of the contradiction. Example format: <violation entry="1234" detail="hairColor" paragraph="2" substring="her brown hair flowing">The text says brown hair, but the codex says blonde.</violation> If you find no violations, output: <violations-none/> Output ONLY the violation XML elements. Do not include any other text, preamble, or explanation outside the XML.
User/Human
<codex> <character id="4412" name="Aurora Carter" aliases="Rory, Laila, Aurora, Carter, Malphora" pronouns="she/her" species="Human" storyRole="Protagonist"> <eyeColor>bright blue</eyeColor> <hair>straight shoulder-length black</hair> <height>5'6"</height> <age>25</age> <scar>small crescent-shaped scar on her left wrist from a childhood accident</scar> <description>Aurora, referred to by her friends as Rory, is cool-headed, intelligent, and known for quick out-of-the-box thinking.</description> <backstory>Born in Cardiff to an Irish barrister father (Brendan Carter) and Welsh teacher mother (Jennifer Carter née Ellis), Rory reluctantly pursued Pre-Law at Cardiff University. She fled to London at the behest of her childhood friend Eva after leaving an abusive ex named Evan. By day, Rory works part-time as a delivery person for Yu-Fei Cheung's Golden Empress restaurant. She lives in a flat above Silas' bar.</backstory> </character> <character id="4413" name="Silas Blackwood" aliases="Silas, Si, the Spymaster" pronouns="he/him" species="Human" storyRole="Mentor"> <eyeColor>hazel</eyeColor> <hair>grey-streaked auburn</hair> <height>6'1"</height> <age>58</age> <beard>neatly trimmed, matching his grey-streaked auburn hair</beard> <limp>slight limp in his left leg from an old knee injury</limp> <signetRing>silver signet ring, always worn on his right hand</signetRing> <description>Silas is a retired intelligence operative turned bar owner. He carries himself with quiet authority.</description> <backstory>Former MI6 field agent who retired after a botched operation in Prague left him with a permanent knee injury. He opened "The Raven's Nest" bar in Soho as a front for his network of contacts.</backstory> </character> <location id="853" name="Dymas (Gluttony)" aliases="Dymas, gluttony, Dymasian" realm="Hel" sin="Gluttony"> <ruler>Prince Belphegor</ruler> <skyColor>warm amber</skyColor> <description>A place of excess and indulgence. Sprawling vineyards, orchards, and gardens provide exotic ingredients for master chefs — often helbound souls contracted from Earth. Grand feasts and culinary competitions are common.</description> </location> <location id="854" name="The Raven's Nest" aliases="the Nest, Raven, Silas' bar" realm="Earth"> <signColor>distinctive green neon sign above the entrance</signColor> <secretRoom>hidden back room accessible through a bookshelf, used for clandestine meetings</secretRoom> <description>A dimly lit bar in Soho, London. The walls are covered with old maps and black-and-white photographs.</description> </location> <item id="2001" name="Heartstone Pendant" aliases="the pendant, Heartstone" type="Artifact" origin="Dymas"> <gemstoneColor>deep crimson</gemstoneColor> <chainMaterial>silver chain</chainMaterial> <size>roughly the size of a thumbnail</size> <behavior>pulses faintly with warmth when near a Hel portal</behavior> <glow>faint inner glow</glow> <description>Given to Aurora by an unknown benefactor.</description> </item> </codex> <text> Rory pushed through the door of The Raven's Nest, her green eyes scanning the room for Silas. The old spy was behind the counter, polishing a glass with his usual calm demeanor. "You're late," Silas said, running a hand through his dark brown beard. He set the glass down and limped around to her side. Aurora pulled the Heartstone Pendant from her jacket — the golden chain catching the low light — and placed it on the bar top. "I found something in Dymas. Prince Mammon's realm is... unsettling, to say the least. The feasts never end." Silas studied the pendant. "And you're sure this came from there?" "Positive." Rory slid onto a barstool, her Half-Fae senses tingling as the pendant pulsed. "Eva would know more about its origin." </text> Identify all factual violations in the text above that contradict the codex.
Model response
Messages
Meta
AI
Let's analyze the text for contradictions with the codex. 1. "her green eyes" in paragraph 1. Codex entry 4412 for Aurora Carter says eyeColor: bright blue. So contradiction: eyes are green in text, blue in codex. entry="4412" detail="eyeColor" paragraph="1" substring="her green eyes" 2. "dark brown beard" in paragraph 2. Codex entry 4413 for Silas Blackwood says beard: "neatly trimmed, matching his grey-streaked auburn hair". Also hair: grey-streaked auburn. So beard should be grey-streaked auburn, not dark brown. entry="4413" detail="beard" paragraph="2" substring="dark brown beard" 3. "the golden chain" in paragraph 3. Codex entry 2001 for Heartstone Pendant says chainMaterial: silver chain. The text says golden chain. Contradiction. entry="2001" detail="chainMaterial" paragraph="3" substring="the golden chain" 4. "Prince Mammon's realm" in paragraph 3. Codex entry 853 for Dymas (Gluttony) says ruler: Prince Belphegor. The text refers to "Prince Mammon". Mammon is associated with greed in some traditions, but Dymas is gluttony and ruled by Belphegor. So contradiction. entry="853" detail="ruler" paragraph="3" substring="Prince Mammon's realm" 5. "her Half-Fae senses" in paragraph 4. Codex entry 4412 for Aurora Carter says species: Human. The text says "Half-Fae". Humans can't be Half-Fae. Contradiction. entry="4412" detail="species" paragraph="4" substring="her Half-Fae senses" 6. "the pendant pulsed" in paragraph 4. Codex says the Heartstone Pendant "pulses faintly with warmth when near a Hel portal" (behavior) and has a "faint inner glow" (glow). The text says "the pendant pulsed" - that is consistent with behavior (pulses). But the text doesn't say anything about warmth or glow. It says "pulsed" which is fine. No contradiction here, as it's consistent with the codex behavior. However, codex says "silver chain" and text says "golden chain" - we already flagged that. So this detail is not a violation by itself. 7. Also check "The Raven's Nest" description in text: "door of The Raven's Nest" - location name correct. In codex, signColor: "distinctive green neon sign", no contradiction in text. 8. "Eva" - no codex entry for Eva, so no contradiction. 9. "Silas" - codex says "slight limp in his left leg" and text says "limped" - consistent. No contradiction. Now output only violation XML elements. No preamble.
created_at
"2026-07-07T20:31:09.119Z"
7/7/2026, 8:31:09 PM
model
"aion-labs/aion-3.0-mini-20260707"
app_id
182717
external_user
(null)
streamed
true
cancelled
false
latency
880
moderation_latency
(null)
generation_time
42771
tokens_prompt
1441
tokens_completion
1528
native_tokens_prompt
1361
native_tokens_completion
1542
native_tokens_completion_images
(null)
native_tokens_reasoning
906
native_tokens_cached
401
num_media_prompt
(null)
num_input_audio_prompt
(null)
num_media_completion
0
num_search_results
(null)
num_fetches
(null)
web_search_engine
(null)
origin
"https://ncbench.com/"
is_byok
false
finish_reason
"stop"
native_finish_reason
"stop"
service_tier
(null)
usage
0.00290298
router
(null)
provider_responses
0
endpoint_id
"0ad7ab68-a351-4a96-b2ef-fa8fe13adae3"
id
"a10a729d7e204fb6acbb04836c84731a"
is_byok
false
latency
880
model_permaslug
"aion-labs/aion-3.0-mini-20260707"
provider_name
"AionLabs"
status
200
user_agent
"langchainjs-openai/1.0.0 ((node/v24.18.0; linux; x64))"
http_referer
(null)
request_id
"req-1783456269-HE4EiUrb6loLlyZPgLCt"
session_id
(null)
preset_id
(null)
api_type
"completions"
id
"gen-1783456269-GjC7zR9jIOWochcAvIcZ"
upstream_id
"a10a729d7e204fb6acbb04836c84731a"
total_cost
0.00290298
cache_discount
0.00020852
upstream_inference_cost
0
provider_name
"AionLabs"
response_cache_source_id
(null)
data_region
"global"
Evaluation details
Result
Evaluator
Details
Meta Data
0.00%
Accuracy (recall)
Matched: 0/5, FP: 0
parsedCount
0
matched
0
total
5
falsePositives
0
expectedDetails
0
expected
entry
"4412"
detail
"eyeColor"
summary
"Aurora has bright blue eyes per her codex entry, but the passage says she has green eyes."
status
"missed"
1
expected
entry
"4412"
detail
"species"
summary
"Aurora is Human per her codex entry, but the passage refers to her as Half-Fae."
status
"missed"
2
expected
entry
"2001"
detail
"chainMaterial"
summary
"The Heartstone Pendant has a silver chain per its codex entry, but the passage says golden chain."
status
"missed"
3
expected
entry
"4413"
detail
"beard"
summary
"Silas's beard matches his grey-streaked auburn hair per codex, but the passage says dark brown beard."
status
"missed"
4
expected
entry
"853"
detail
"ruler"
summary
"Dymas is Prince Belphegor's realm per the codex, but the passage says Prince Mammon's realm."
status
"missed"
falsePositiveDetails
(empty)
0.00%
Precision
True positives: 0/0
totalReported
0
truePositives
0
reportedDetails
(empty)
0.00%
Structural validity
Parsed: 0, Well-formed: 0/0
parsedCount
0
wellFormedScore
0
hasAttempt
false
0.0000%