Run: 2026-02-24-01KJ8WCK1HP95E7F94SKN5RW2Z

Run Details

Duration:
36.1s
Cost:
$0.060177
Provider:
Amazon Bedrock

Evaluation summary

Score Evaluator
Details Link
89.26% Accuracy (details)
100.00% Precision (details)
100.00% Recall (details)
100.00% Structural validity (details)
97.3159% Overall

Model input

System
You are a meticulous story bible editor for a fiction project. Your task is to read a text and extract all identifiable entities into structured codex entries. Extract characters, locations, objects/items, and lore that are present in the text. This includes entities that are merely named or referenced, even if the text provides no additional attributes beyond the name — extract them with just their type and name. Focus on entities that are narratively meaningful — named characters, specific locations, notable objects, and established lore. Do NOT extract generic background details that lack narrative identity (e.g. "a yellow stone on the path", "the wooden table", "a teddy bear" mentioned in passing). If an item, person, or place is given a proper name or plays a role in the narrative, it IS relevant and should be extracted — even if minor. Rules: 1. Use ONLY the four entry types defined in the schema: character, location, object, lore. 2. Use ONLY the fields defined for each entry type. Do not invent new fields. 3. For dropdown fields, use ONLY the listed values. If no listed value fits, omit the field. 4. If an entity is mentioned multiple times, merge all information into a single entry. 5. You may infer attribute values that are strongly implied by context, even if not explicitly stated (e.g. inferring a time period from surrounding dialogue). 6. Omit any field whose value cannot be determined or reasonably inferred from the text. 7. Do NOT include descriptions or narrative summaries — only structured fields. 8. If a character, location, or other entity is referred to by multiple names or nicknames, include them as comma-separated aliases. 9. Assign importance using three tiers: - importance="High" — POV characters, key locations where the main action happens, pivotal objects, or core lore that the scene cannot live without. - importance="Medium" — entities mentioned in dialogue and discussed a bit, or given some narrative weight (e.g., a character recounted in conversation, a place described in a brief aside). They matter to the story but are not central to the scene. - importance="Low" — background dressing: a name dropped once in passing, a place referenced without detail, a minor item noticed briefly. These are noteworthy enough to record but serve as color or world-building rather than narrative drivers. 10. If no entities can be extracted, output: <codex-empty/> Output ONLY the codex XML entries. Do not include any other text, preamble, or explanation outside the XML. { "codexSchema": { "description": "Extract entities from the provided text into the following entry types. Output as XML.", "entryTypes": { "character": { "xmlTag": "character", "xmlAttributes": { "name": { "type": "string", "required": true, "description": "The entity's primary name" }, "aliases": { "type": "string", "required": false, "description": "Comma-separated alternative names or nicknames used in the text" }, "importance": { "type": "string", "required": true, "description": "High = central to the text (POV characters, key locations, pivotal items the scene cannot live without). Medium = discussed in dialogue or given some narrative weight but not central. Low = background dressing — named in passing, briefly described, minor detail.", "enum": [ "High", "Medium", "Low" ] } }, "fields": { "species": { "type": "string", "enum": [ "Human", "Elf", "Dwarf", "Orc", "Halfling", "Gnome", "Dragon", "Demon", "Angel", "Undead", "Vampire", "Werewolf", "Fae", "Half-Elf", "Goblin", "Troll", "Giant", "Merfolk", "Centaur", "Tiefling" ] }, "gender": { "type": "string", "enum": [ "Male", "Female", "Non-binary" ] }, "age": { "type": "string" }, "eyeColor": { "type": "string", "enum": [ "Blue", "Green", "Brown", "Hazel", "Gray", "Amber", "Black", "Violet", "Red", "Golden", "Silver" ] }, "hairColor": { "type": "string", "enum": [ "Black", "Brown", "Blonde", "Red", "Auburn", "Gray", "White", "Silver", "Blue", "Green" ] } } }, "location": { "xmlTag": "location", "xmlAttributes": { "name": { "type": "string", "required": true, "description": "The entity's primary name" }, "aliases": { "type": "string", "required": false, "description": "Comma-separated alternative names or nicknames used in the text" }, "importance": { "type": "string", "required": true, "description": "High = central to the text (POV characters, key locations, pivotal items the scene cannot live without). Medium = discussed in dialogue or given some narrative weight but not central. Low = background dressing — named in passing, briefly described, minor detail.", "enum": [ "High", "Medium", "Low" ] } }, "fields": { "country": { "type": "string" }, "climate": { "type": "string", "enum": [ "Tropical", "Arid", "Temperate", "Continental", "Polar", "Humid", "Mediterranean", "Desert", "Oceanic", "Subarctic" ] }, "terrain": { "type": "string", "enum": [ "Forest", "Mountain", "Desert", "Plains", "Swamp", "Coastal", "Volcanic", "Tundra", "Underground", "Urban", "Island", "Jungle" ] } } }, "object": { "xmlTag": "object", "xmlAttributes": { "name": { "type": "string", "required": true, "description": "The entity's primary name" }, "aliases": { "type": "string", "required": false, "description": "Comma-separated alternative names or nicknames used in the text" }, "importance": { "type": "string", "required": true, "description": "High = central to the text (POV characters, key locations, pivotal items the scene cannot live without). Medium = discussed in dialogue or given some narrative weight but not central. Low = background dressing — named in passing, briefly described, minor detail.", "enum": [ "High", "Medium", "Low" ] } }, "fields": { "material": { "type": "string" }, "objectType": { "type": "string", "enum": [ "Weapon", "Armor", "Artifact", "Tool", "Jewelry", "Potion", "Book", "Key", "Instrument", "Clothing" ] }, "power": { "type": "string", "enum": [ "Fire", "Water", "Earth", "Air", "Lightning", "Ice", "Dark", "Light", "Arcane", "Nature", "Void", "Poison", "Healing", "Time", "Psychic" ] } } }, "lore": { "xmlTag": "lore", "xmlAttributes": { "name": { "type": "string", "required": true, "description": "The entity's primary name" }, "aliases": { "type": "string", "required": false, "description": "Comma-separated alternative names or nicknames used in the text" }, "importance": { "type": "string", "required": true, "description": "High = central to the text (POV characters, key locations, pivotal items the scene cannot live without). Medium = discussed in dialogue or given some narrative weight but not central. Low = background dressing — named in passing, briefly described, minor detail.", "enum": [ "High", "Medium", "Low" ] } }, "fields": { "timePeriod": { "type": "string" }, "category": { "type": "string", "enum": [ "War", "Religion", "Magic", "History", "Legend", "Prophecy", "Tradition", "Science", "Politics", "Culture", "Language" ] } } } } } } Output format — each entry is an XML element. name, aliases, and importance are XML attributes. All fields are child elements. Omit fields that cannot be determined from the text. Example: <character name="Adris" aliases="The Wanderer" importance="High"> <species>Half-Elf</species> <eyeColor>Green</eyeColor> </character> <location name="Thornwood" importance="Medium"> <terrain>Forest</terrain> </location> <lore name="The Grey Tide" importance="Low"> <category>History</category> </lore>
User/Human
<text> The Spire of Echoes rose from the mountain's shoulder like a black tooth against the snow. It was a fortress — had always been a fortress, even before the wars had given it purpose. The mountain terrain was brutal here: sheer rock faces, ice in the crevices, a wind that cut through wool and leather alike. Frost coated every surface. The stone was dark and slick with it. Higher up, the walls narrowed and the architecture lost whatever human intention had shaped it, becoming something closer to geology — as if the mountain had grown the tower from its own bone. Birds didn't nest here. Nothing lived on these upper slopes that didn't have to. Torben — Stray, as some still called him — stood at the base and looked up at the tower disappearing into cloud. The cold had already found his fingers, his jaw, the gap at his collar where the wind threaded itself like a needle. He had been in worse places. Not many. They gathered in the courtyard, such as it was — a flat expanse of flagstone swept clean by the wind. Sable stood to his left, arms crossed, her jaw set. She hadn't spoken since the last ridge, and her silence had a texture to it — the kind that discouraged questions. Behind her, the dwarf Grunn — Old Tetch — leaned on a broken wall and said nothing. His eyes moved, though. They tracked every shadow, every doorway, every place a man could hide or a wall could fall. Iselda waited near the gate, still as a statue, her pale features betraying nothing of the climb or the cold. Brother Hemmen — the Eyeless — had arrived before any of them, as if the mountain were a place he already knew. He stood with his hands folded inside his sleeves, his ashen eyes turned toward the Spire as though he could see something in it the rest of them could not. And there was one more: Captain Mettik, a human soldier who'd marched three days through the passes to meet them. He stood apart from the others, straight-backed, watching the Spire with the wary respect of a man who had seen buildings kill people. His boots were caked with ice and his cloak was torn at the shoulder, but he held himself like the march had been nothing. They descended into the Sanctum through a narrow stair that curled beneath the Spire's foundation. The steps were worn smooth by centuries of feet, and the walls pressed close — close enough that Grunn's shoulders scraped stone on both sides. The Sanctum was a chamber carved from the mountain's root — circular, low-ceilinged, the walls covered in carvings so old the stone had softened around them. Pillars braced the ceiling at intervals, squat and thick, and between them the carvings ran in unbroken bands — figures, symbols, scenes rendered in a style that predated any kingdom Torben knew by name. Dim light filtered through cracks in the rock above. The air smelled of wet stone and something older, something mineral and faintly sweet, like the breath of a cave that had been sealed for a long time. It was cold. Everything here was cold. Hemmen spoke first. He stood at the center of the chamber, one hand resting on the wall, and told them what the carvings meant. "The Riven War," he said. "A thousand years before the Felling. Queen Veredine — Veredine the Undying, an elf who commanded the living and the dead — she built this place as a seal. Her army, the Pallid Host, were the restless dead she had bound to her will. They did not tire. They did not question. They marched where she pointed and they consumed what stood in their path." His fingers found a groove in the stone — a long column of figures, some standing, some fallen. "When the war ended, she sealed them here. Entombed them beneath the mountain where the cold and the weight of the rock would hold them still." He traced a line across the stone with one finger. "Hatchwell — the town that stood at the mountain's base — burned. Nothing left. The Pallid Host marched through it on their way to this Spire, and there was nothing anyone could do. The people of Hatchwell had no warning. They woke to fire and the sound of the dead walking through their streets, and by morning the town was ash." The silence that followed was broken by footsteps. Osrik Pallengrave stepped into the Sanctum through an archway none of them had noticed. The Pale, they called him. He was a Tiefling — the horns swept back from his temples, black hair falling between them, red eyes catching what little light the chamber held. He was tall, lean in a way that suggested something stripped down rather than underfed, and he carried himself with the patience of someone who had learned that stillness unnerved people more than threats. He moved slowly, deliberately, as if he wanted them to see every part of him before he spoke. In his right hand he carried a blade: Harrowglass. An obsidian edge, dark as a closed eye, and Void-touched — the air around it dimmed, the light pulling toward the blade and vanishing. Some called it the Hungering Edge, and the name fit. It looked like it could eat the light from a room and still be hungry. Torben stepped forward. His green eyes met Osrik's red ones across the chamber. Neither moved. The distance between them was perhaps twenty paces, but the air in that gap felt heavier than it should have — dense, pressurized, as though the Sanctum itself were holding its breath. Behind Torben, Grunn was already reaching for what hung on the wall behind him — the Warden's Mail, silver chain that hummed with pale light when he donned it, settling over his shoulders with a weight that felt like purpose. The links caught the dim glow and threw it back against the walls. Captain Mettik's hand went to his sword, though he did not draw. Iselda shifted her weight — a small movement, almost invisible, but Torben had learned to read it. She was ready. The carvings on the walls seemed to shift in the changing light. Hemmen's voice rose. "The Binding of Reshkai — you know of it. What was sealed in The Hollow was one half of a lock. This Spire is the other." He looked at Osrik. "The Felling broke the world two centuries ago. But this — this was built to stop something older." Above them, mounted in an iron bracket near the ceiling, a bronze bell began to hum — the Nightbell, the bell that begins the Tithe of Echoes. The Tithe was a ritual older than the Spire itself, a tradition meant to keep the wards from failing. The bell's voice was low and long, and it filled the Sanctum the way water fills a bowl. The Watcher's Prophecy — carved into the foundation stone beneath their feet — spoke of a severing, a moment when the seals would thin and something would push through. Sable drew Kindling. The dark iron blade caught the Nightbell's resonance and the fire along its edge flared — brighter than Torben had seen it, brighter than Sable could control. She didn't look at the blade. She looked at Osrik. "Wren Hessik died at your hands," she said. Her voice was steady but her knuckles were white around the hilt. "And before her — Petal. My sister. You remember, don't you? You were there when The Felling reached the coast. You were there when the world caught fire." Osrik said nothing. The Hungering Edge moved slightly in his grip, as if it were breathing. The first strike came from the dark. Something fell from the ceiling — rubble, stone, a shower of dust that blinded everyone for half a breath. Chains rattled in the walls. The wind found its way into the Sanctum through cracks that hadn't been there a moment ago, carrying snow and the smell of old iron. Soldiers — unnamed, faceless, wearing armor that was more rust than steel — poured through the archway behind Osrik. They moved like men who had forgotten how to stop. Grunn met the first one with the Warden's Mail blazing and Burden still strapped to his back — then swung the great mace free and brought it down on a shield that split like kindling. Torben moved left. Sable moved right. Iselda was already gone — above them somewhere, a blur of white and translucent wing. Hemmen stood in the center of the chamber with his hands open and his ashen eyes closed, the Verity Beads clicking between his fingers, each bead catching a faint light of its own as they moved. The floor shook. Stones fell. A wooden beam cracked and swung loose from the ceiling, trailing dust. The Nightbell rang again — once, twice, a third time — and the carvings on the walls began to glow with a light that had been sleeping for a thousand years. The crumbling walls shed mortar like dead skin. An iron door at the far end of the Sanctum buckled inward. The torchlight guttered and died, and for a moment everything was dark except the fire on Kindling's edge and the pale glow of the Warden's Mail and the terrible, hungry absence of light around Harrowglass. Then the Spire shook to its roots, and the mountain answered. </text> Extract all codex entries from the text above.

Model response

AI
```xml <character name="Torben" aliases="Stray" importance="High"> <species>Human</species> <gender>Male</gender> <eyeColor>Green</eyeColor> </character> <character name="Sable" importance="High"> <gender>Female</gender> </character> <character name="Grunn" aliases="Old Tetch" importance="High"> <species>Dwarf</species> <gender>Male</gender> </character> <character name="Iselda" importance="High"> <gender>Female</gender> </character> <character name="Brother Hemmen" aliases="The Eyeless" importance="High"> <gender>Male</gender> <eyeColor>Gray</eyeColor> </character> <character name="Osrik Pallengrave" aliases="The Pale" importance="High"> <species>Tiefling</species> <gender>Male</gender> <hairColor>Black</hairColor> <eyeColor>Red</eyeColor> </character> <character name="Captain Mettik" importance="Medium"> <species>Human</species> <gender>Male</gender> </character> <character name="Queen Veredine" aliases="Veredine the Undying" importance="Medium"> <species>Elf</species> <gender>Female</gender> </character> <character name="Wren Hessik" importance="Low"> <gender>Female</gender> </character> <character name="Petal" importance="Low"> <gender>Female</gender> </character> <location name="The Spire of Echoes" importance="High"> <terrain>Mountain</terrain> </location> <location name="The Sanctum" importance="High"> <terrain>Underground</terrain> </location> <location name="Hatchwell" importance="Medium"> <terrain>Mountain</terrain> </location> <location name="The Hollow" importance="Low"> </location> <object name="Harrowglass" aliases="Hungering Edge" importance="High"> <material>obsidian</material> <objectType>Weapon</objectType> <power>Void</power> </object> <object name="Kindling" importance="High"> <material>dark iron</material> <objectType>Weapon</objectType> <power>Fire</power> </object> <object name="Warden's Mail" importance="High"> <material>silver chain</material> <objectType>Armor</objectType> <power>Light</power> </object> <object name="Nightbell" importance="Medium"> <material>bronze</material> <objectType>Instrument</objectType> </object> <object name="Burden" importance="Medium"> <objectType>Weapon</objectType> </object> <object name="Verity Beads" importance="Medium"> <objectType>Artifact</objectType> <power>Light</power> </object> <lore name="The Felling" importance="High"> <timePeriod>Two centuries before present</timePeriod> <category>History</category> </lore> <lore name="The Riven War" importance="High"> <timePeriod>A thousand years before the Felling</timePeriod> <category>War</category> </lore> <lore name="The Pallid Host" importance="Medium"> <timePeriod>The Riven War</timePeriod> <category>War</category> </lore> <lore name="The Binding of Reshkai" importance="Medium"> <category>Magic</category> </lore> <lore name="The Tithe of Echoes" importance="Medium"> <category>Tradition</category> </lore> <lore name="The Watcher's Prophecy" importance="Medium"> <category>Prophecy</category> </lore> ```
created_at"2026-02-24T22:30:17.917Z" 2/24/2026, 10:30:17 PM
model"anthropic/claude-4.6-sonnet-20260217"
app_id182717
external_user(null)
streamedtrue
cancelledfalse
latency752
moderation_latency225
generation_time35780
tokens_prompt5192
tokens_completion1432
native_tokens_prompt4794
native_tokens_completion3053
native_tokens_completion_images(null)
native_tokens_reasoning570
native_tokens_cached0
num_media_prompt(null)
num_input_audio_prompt(null)
num_media_completion0
num_search_results(null)
origin"https://ncbench.com/"
is_byokfalse
finish_reason"stop"
native_finish_reason"stop"
usage0.060177
router(null)
provider_responses
0
endpoint_id"83d802cb-44f2-45a0-a9d5-cb9bf79777c8"
id"67742238-ac76-4ada-94f7-05eb150101f0"
is_byokfalse
latency751
model_permaslug"anthropic/claude-4.6-sonnet-20260217"
provider_name"Amazon Bedrock"
status200
api_type"completions"
id"gen-1771972217-tN0XBv1qLIdgltHyNIqR"
upstream_id"67742238-ac76-4ada-94f7-05eb150101f0"
total_cost0.060177
cache_discount(null)
upstream_inference_cost0
provider_name"Amazon Bedrock"

Evaluation details

Result Evaluator Details Meta Data
89.26% Accuracy
Eligible: 26, Weighted avg: 0.89
eligibleCount26
matchedCount26
weightedAvg0.8926356589147286
entryScores
0
name"Torben Reikhart"
importance"medium"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
gender
expected"Male"
actual"Male"
source"inferred"
score1
method"dropdown"
eyeColor
expected"Green"
actual"Green"
source"explicit"
score1
method"dropdown"
aliases
score1
matched
0"stray"
missed(empty)
extra(empty)
importance
expected"medium"
alternatives
0"high"
actual"High"
correcttrue
score1
rawScore1
dimensions5
entryScore1
1
name"Sable Dunmore"
importance"medium"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
gender
expected"Female"
actual"Female"
source"explicit"
score1
method"dropdown"
importance
expected"medium"
alternatives
0"high"
actual"High"
correcttrue
score1
rawScore1
dimensions3
entryScore1
2
name"Grunn Tetch"
importance"medium"
score0.8
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
species
expected"Dwarf"
actual"Dwarf"
source"explicit"
score1
method"dropdown"
gender
expected"Male"
actual"Male"
source"inferred"
score1
method"dropdown"
aliases
score1
matched
0"old tetch"
missed(empty)
extra(empty)
importance
expected"medium"
alternatives(empty)
actual"High"
correctfalse
score0
rawScore0.8
dimensions5
entryScore0.8
3
name"Iselda Moth"
importance"low"
score0.6666666666666666
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
gender
expected"Female"
actual"Female"
source"inferred"
score1
method"dropdown"
importance
expected"low"
alternatives
0"medium"
actual"High"
correctfalse
score0
rawScore0.6666666666666666
dimensions3
entryScore0.6666666666666666
4
name"Brother Hemmen"
importance"medium"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
gender
expected"Male"
actual"Male"
source"explicit"
score1
method"dropdown"
eyeColor
expected"Gray"
actual"Gray"
source"inferred"
score1
method"dropdown"
aliases
score1
matched
0"the eyeless"
missed(empty)
extra(empty)
importance
expected"medium"
alternatives
0"high"
actual"High"
correcttrue
score1
rawScore1
dimensions5
entryScore1
5
name"Captain Mettik"
importance"low"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
species
expected"Human"
actual"Human"
source"explicit"
score1
method"dropdown"
gender
expected"Male"
actual"Male"
source"explicit"
score1
method"dropdown"
importance
expected"low"
alternatives
0"medium"
actual"Medium"
correcttrue
score1
rawScore1
dimensions4
entryScore1
6
name"Osrik Pallengrave"
importance"high"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
species
expected"Tiefling"
actual"Tiefling"
source"explicit"
score1
method"dropdown"
gender
expected"Male"
actual"Male"
source"inferred"
score1
method"dropdown"
eyeColor
expected"Red"
actual"Red"
source"explicit"
score1
method"dropdown"
hairColor
expected"Black"
actual"Black"
source"explicit"
score1
method"dropdown"
aliases
score1
matched
0"the pale"
missed(empty)
extra(empty)
importance
expected"high"
alternatives(empty)
actual"High"
correcttrue
score1
rawScore1
dimensions7
entryScore1
7
name"Queen Veredine"
importance"medium"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
species
expected"Elf"
actual"Elf"
source"explicit"
score1
method"dropdown"
gender
expected"Female"
actual"Female"
source"explicit"
score1
method"dropdown"
aliases
score1
matched
0"veredine the undying"
missed(empty)
extra(empty)
importance
expected"medium"
alternatives
0"high"
actual"Medium"
correcttrue
score1
rawScore1
dimensions5
entryScore1
8
name"Wren Hessik"
importance"low"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
gender
expected"Female"
actual"Female"
source"inferred"
score1
method"dropdown"
importance
expected"low"
alternatives(empty)
actual"Low"
correcttrue
score1
rawScore1
dimensions3
entryScore1
9
name"Petal Dunmore"
importance"low"
score1
details
type
expected
0"character"
actual"character"
correcttrue
score1
attributes
gender
expected"Female"
actual"Female"
source"explicit"
score1
method"dropdown"
importance
expected"low"
alternatives(empty)
actual"Low"
correcttrue
score1
rawScore1
dimensions3
entryScore1
10
name"The Spire of Echoes"
importance"high"
score0.75
details
type
expected
0"location"
actual"location"
correcttrue
score1
attributes
terrain
expected"Mountain"
actual"Mountain"
source"explicit"
score1
method"dropdown"
climate
expected"Subarctic"
actual(null)
source"inferred"
score0
reason"missing"
importance
expected"high"
alternatives(empty)
actual"High"
correcttrue
score1
rawScore0.75
dimensions4
entryScore0.75
11
name"The Sanctum"
importance"medium"
score1
details
type
expected
0"location"
actual"location"
correcttrue
score1
attributes
terrain
expected"Underground"
actual"Underground"
source"inferred"
score1
method"dropdown"
importance
expected"medium"
alternatives
0"high"
actual"High"
correcttrue
score1
rawScore1
dimensions3
entryScore1
12
name"Hatchwell"
importance"low"
score1
details
type
expected
0"location"
actual"location"
correcttrue
score1
attributes
importance
expected"low"
alternatives
0"medium"
actual"Medium"
correcttrue
score1
rawScore1
dimensions2
entryScore1
13
name"The Hollow"
importance"low"
score1
details
type
expected
0"location"
actual"location"
correcttrue
score1
attributes
importance
expected"low"
alternatives(empty)
actual"Low"
correcttrue
score1
rawScore1
dimensions2
entryScore1
14
name"Kindling"
importance"medium"
score0.8
details
type
expected
0"object"
actual"object"
correcttrue
score1
attributes
material
expected"Dark iron"
actual"dark iron"
source"explicit"
score1
method"text"
objectType
expected"Weapon"
actual"Weapon"
source"explicit"
score1
method"dropdown"
power
expected"Fire"
actual"Fire"
source"explicit"
score1
method"dropdown"
importance
expected"medium"
alternatives(empty)
actual"High"
correctfalse
score0
rawScore0.8
dimensions5
entryScore0.8
15
name"Harrowglass"
importance"high"
score1
details
type
expected
0"object"
actual"object"
correcttrue
score1
attributes
material
expected"Obsidian"
actual"obsidian"
source"explicit"
score1
method"text"
objectType
expected"Weapon"
actual"Weapon"
source"explicit"
score1
method"dropdown"
power
expected"Void"
actual"Void"
source"explicit"
score1
method"dropdown"
aliases
score1
matched
0"the hungering edge"
missed(empty)
extra(empty)
importance
expected"high"
alternatives(empty)
actual"High"
correcttrue
score1
rawScore1
dimensions6
entryScore1
16
name"The Warden's Mail"
importance"medium"
score0.8
details
type
expected
0"object"
actual"object"
correcttrue
score1
attributes
material
expected"Silver chain"
actual"silver chain"
source"explicit"
score1
method"text"
objectType
expected"Armor"
actual"Armor"
source"inferred"
score1
method"dropdown"
power
expected"Light"
actual"Light"
source"explicit"
score1
method"dropdown"
importance
expected"medium"
alternatives(empty)
actual"High"
correctfalse
score0
rawScore0.8
dimensions5
entryScore0.8
17
name"Nightbell"
importance"medium"
score1
details
type
expected
0"object"
actual"object"
correcttrue
score1
attributes
material
expected"Bronze"
actual"bronze"
source"explicit"
score1
method"text"
objectType
expected"Instrument"
actual"Instrument"
source"inferred"
score1
method"dropdown"
importance
expected"medium"
alternatives
0"low"
actual"Medium"
correcttrue
score1
rawScore1
dimensions4
entryScore1
18
name"Burden"
importance"low"
score0.6666666666666666
details
type
expected
0"object"
actual"object"
correcttrue
score1
attributes
objectType
expected"Weapon"
actual"Weapon"
source"explicit"
score1
method"dropdown"
importance
expected"low"
alternatives(empty)
actual"Medium"
correctfalse
score0
rawScore0.6666666666666666
dimensions3
entryScore0.6666666666666666
19
name"The Verity Beads"
importance"low"
score0.6666666666666666
details
type
expected
0"object"
actual"object"
correcttrue
score1
attributes
objectType
expected"Jewelry"
actual"Artifact"
source"inferred"
score1
method"dropdown"
importance
expected"low"
alternatives(empty)
actual"Medium"
correctfalse
score0
rawScore0.6666666666666666
dimensions3
entryScore0.6666666666666666
20
name"The Felling"
importance"medium"
score0.75
details
type
expected
0"lore"
actual"lore"
correcttrue
score1
attributes
timePeriod
expected"Two centuries ago"
actual"Two centuries before present"
source"explicit"
score1
method"text"
category
expected"War"
actual"History"
source"inferred"
score1
method"dropdown"
importance
expected"medium"
alternatives
0"low"
actual"High"
correctfalse
score0
rawScore0.75
dimensions4
entryScore0.75
21
name"The Riven War"
importance"medium"
score0.75
details
type
expected
0"lore"
actual"lore"
correcttrue
score1
attributes
timePeriod
expected"A thousand years before the Felling"
actual"A thousand years before the Felling"
source"explicit"
score1
method"text"
category
expected"War"
actual"War"
source"explicit"
score1
method"dropdown"
importance
expected"medium"
alternatives(empty)
actual"High"
correctfalse
score0
rawScore0.75
dimensions4
entryScore0.75
22
name"The Watcher's Prophecy"
importance"low"
score0.6666666666666666
details
type
expected
0"lore"
actual"lore"
correcttrue
score1
attributes
category
expected"Prophecy"
actual"Prophecy"
source"explicit"
score1
method"dropdown"
importance
expected"low"
alternatives(empty)
actual"Medium"
correctfalse
score0
rawScore0.6666666666666666
dimensions3
entryScore0.6666666666666666
23
name"The Tithe of Echoes"
importance"low"
score0.6666666666666666
details
type
expected
0"lore"
actual"lore"
correcttrue
score1
attributes
category
expected"Tradition"
actual"Tradition"
source"explicit"
score1
method"dropdown"
importance
expected"low"
alternatives(empty)
actual"Medium"
correctfalse
score0
rawScore0.6666666666666666
dimensions3
entryScore0.6666666666666666
24
name"The Pallid Host"
importance"low"
score1
details
type
expected
0"lore"
actual"lore"
correcttrue
score1
attributes
category
expected"Legend"
actual"War"
source"inferred"
score1
method"dropdown"
importance
expected"low"
alternatives
0"medium"
actual"Medium"
correcttrue
score1
rawScore1
dimensions3
entryScore1
25
name"The Binding of Reshkai"
importance"low"
score1
details
type
expected
0"lore"
actual"lore"
correcttrue
score1
attributes
category
expected"Magic"
actual"Magic"
source"inferred"
score1
method"dropdown"
importance
expected"low"
alternatives
0"medium"
actual"Medium"
correcttrue
score1
rawScore1
dimensions3
entryScore1
explicitAccuracy
correct28
total28
rate1
inferredAccuracy
correct13
total14
rate0.9285714285714286
100.00% Precision
True positives: 26/26
totalReported26
duplicateCount0
duplicates(empty)
truePositives26
reportedDetails
0
parsed
type"character"
name"Torben"
status"true_positive"
matchedExpected
name"Torben Reikhart"
types
0"character"
1
parsed
type"character"
name"Sable"
status"true_positive"
matchedExpected
name"Sable Dunmore"
types
0"character"
2
parsed
type"character"
name"Grunn"
status"true_positive"
matchedExpected
name"Grunn Tetch"
types
0"character"
3
parsed
type"character"
name"Iselda"
status"true_positive"
matchedExpected
name"Iselda Moth"
types
0"character"
4
parsed
type"character"
name"Brother Hemmen"
status"true_positive"
matchedExpected
name"Brother Hemmen"
types
0"character"
5
parsed
type"character"
name"Osrik Pallengrave"
status"true_positive"
matchedExpected
name"Osrik Pallengrave"
types
0"character"
6
parsed
type"character"
name"Captain Mettik"
status"true_positive"
matchedExpected
name"Captain Mettik"
types
0"character"
7
parsed
type"character"
name"Queen Veredine"
status"true_positive"
matchedExpected
name"Queen Veredine"
types
0"character"
8
parsed
type"character"
name"Wren Hessik"
status"true_positive"
matchedExpected
name"Wren Hessik"
types
0"character"
9
parsed
type"character"
name"Petal"
status"true_positive"
matchedExpected
name"Petal Dunmore"
types
0"character"
10
parsed
type"location"
name"The Spire of Echoes"
status"true_positive"
matchedExpected
name"The Spire of Echoes"
types
0"location"
11
parsed
type"location"
name"The Sanctum"
status"true_positive"
matchedExpected
name"The Sanctum"
types
0"location"
12
parsed
type"location"
name"Hatchwell"
status"true_positive"
matchedExpected
name"Hatchwell"
types
0"location"
13
parsed
type"location"
name"The Hollow"
status"true_positive"
matchedExpected
name"The Hollow"
types
0"location"
14
parsed
type"object"
name"Harrowglass"
status"true_positive"
matchedExpected
name"Harrowglass"
types
0"object"
15
parsed
type"object"
name"Kindling"
status"true_positive"
matchedExpected
name"Kindling"
types
0"object"
16
parsed
type"object"
name"Warden's Mail"
status"true_positive"
matchedExpected
name"The Warden's Mail"
types
0"object"
17
parsed
type"object"
name"Nightbell"
status"true_positive"
matchedExpected
name"Nightbell"
types
0"object"
18
parsed
type"object"
name"Burden"
status"true_positive"
matchedExpected
name"Burden"
types
0"object"
19
parsed
type"object"
name"Verity Beads"
status"true_positive"
matchedExpected
name"The Verity Beads"
types
0"object"
20
parsed
type"lore"
name"The Felling"
status"true_positive"
matchedExpected
name"The Felling"
types
0"lore"
21
parsed
type"lore"
name"The Riven War"
status"true_positive"
matchedExpected
name"The Riven War"
types
0"lore"
22
parsed
type"lore"
name"The Pallid Host"
status"true_positive"
matchedExpected
name"The Pallid Host"
types
0"lore"
23
parsed
type"lore"
name"The Binding of Reshkai"
status"true_positive"
matchedExpected
name"The Binding of Reshkai"
types
0"lore"
24
parsed
type"lore"
name"The Tithe of Echoes"
status"true_positive"
matchedExpected
name"The Tithe of Echoes"
types
0"lore"
25
parsed
type"lore"
name"The Watcher's Prophecy"
status"true_positive"
matchedExpected
name"The Watcher's Prophecy"
types
0"lore"
100.00% Recall
Matched: 26/26, FP: 0
parsedCount26
totalExpected26
duplicates(empty)
matched26
falsePositives0
weightedRecall1
fpPenalty0
expectedDetails
0
expected
name"Torben Reikhart"
types
0"character"
importance"medium"
status"matched"
matchedBy
type"character"
name"Torben"
1
expected
name"Sable Dunmore"
types
0"character"
importance"medium"
status"matched"
matchedBy
type"character"
name"Sable"
2
expected
name"Grunn Tetch"
types
0"character"
importance"medium"
status"matched"
matchedBy
type"character"
name"Grunn"
3
expected
name"Iselda Moth"
types
0"character"
importance"low"
status"matched"
matchedBy
type"character"
name"Iselda"
4
expected
name"Brother Hemmen"
types
0"character"
importance"medium"
status"matched"
matchedBy
type"character"
name"Brother Hemmen"
5
expected
name"Captain Mettik"
types
0"character"
importance"low"
status"matched"
matchedBy
type"character"
name"Captain Mettik"
6
expected
name"Osrik Pallengrave"
types
0"character"
importance"high"
status"matched"
matchedBy
type"character"
name"Osrik Pallengrave"
7
expected
name"Queen Veredine"
types
0"character"
importance"medium"
status"matched"
matchedBy
type"character"
name"Queen Veredine"
8
expected
name"Wren Hessik"
types
0"character"
importance"low"
status"matched"
matchedBy
type"character"
name"Wren Hessik"
9
expected
name"Petal Dunmore"
types
0"character"
importance"low"
status"matched"
matchedBy
type"character"
name"Petal"
10
expected
name"The Spire of Echoes"
types
0"location"
importance"high"
status"matched"
matchedBy
type"location"
name"The Spire of Echoes"
11
expected
name"The Sanctum"
types
0"location"
importance"medium"
status"matched"
matchedBy
type"location"
name"The Sanctum"
12
expected
name"Hatchwell"
types
0"location"
importance"low"
status"matched"
matchedBy
type"location"
name"Hatchwell"
13
expected
name"The Hollow"
types
0"location"
importance"low"
status"matched"
matchedBy
type"location"
name"The Hollow"
14
expected
name"Kindling"
types
0"object"
importance"medium"
status"matched"
matchedBy
type"object"
name"Kindling"
15
expected
name"Harrowglass"
types
0"object"
importance"high"
status"matched"
matchedBy
type"object"
name"Harrowglass"
16
expected
name"The Warden's Mail"
types
0"object"
importance"medium"
status"matched"
matchedBy
type"object"
name"Warden's Mail"
17
expected
name"Nightbell"
types
0"object"
importance"medium"
status"matched"
matchedBy
type"object"
name"Nightbell"
18
expected
name"Burden"
types
0"object"
importance"low"
status"matched"
matchedBy
type"object"
name"Burden"
19
expected
name"The Verity Beads"
types
0"object"
importance"low"
status"matched"
matchedBy
type"object"
name"Verity Beads"
20
expected
name"The Felling"
types
0"lore"
importance"medium"
status"matched"
matchedBy
type"lore"
name"The Felling"
21
expected
name"The Riven War"
types
0"lore"
importance"medium"
status"matched"
matchedBy
type"lore"
name"The Riven War"
22
expected
name"The Watcher's Prophecy"
types
0"lore"
importance"low"
status"matched"
matchedBy
type"lore"
name"The Watcher's Prophecy"
23
expected
name"The Tithe of Echoes"
types
0"lore"
importance"low"
status"matched"
matchedBy
type"lore"
name"The Tithe of Echoes"
24
expected
name"The Pallid Host"
types
0"lore"
importance"low"
status"matched"
matchedBy
type"lore"
name"The Pallid Host"
25
expected
name"The Binding of Reshkai"
types
0"lore"
importance"low"
status"matched"
matchedBy
type"lore"
name"The Binding of Reshkai"
falsePositiveDetails(empty)
100.00% Structural validity
Parsed: 26, Avg score: 1.00
parsedCount26
avgScore1
entryDetails
0
name"Torben"
type"character"
score1
reason"fully valid"
1
name"Sable"
type"character"
score1
reason"fully valid"
2
name"Grunn"
type"character"
score1
reason"fully valid"
3
name"Iselda"
type"character"
score1
reason"fully valid"
4
name"Brother Hemmen"
type"character"
score1
reason"fully valid"
5
name"Osrik Pallengrave"
type"character"
score1
reason"fully valid"
6
name"Captain Mettik"
type"character"
score1
reason"fully valid"
7
name"Queen Veredine"
type"character"
score1
reason"fully valid"
8
name"Wren Hessik"
type"character"
score1
reason"fully valid"
9
name"Petal"
type"character"
score1
reason"fully valid"
10
name"The Spire of Echoes"
type"location"
score1
reason"fully valid"
11
name"The Sanctum"
type"location"
score1
reason"fully valid"
12
name"Hatchwell"
type"location"
score1
reason"fully valid"
13
name"The Hollow"
type"location"
score1
reason"fully valid"
14
name"Harrowglass"
type"object"
score1
reason"fully valid"
15
name"Kindling"
type"object"
score1
reason"fully valid"
16
name"Warden's Mail"
type"object"
score1
reason"fully valid"
17
name"Nightbell"
type"object"
score1
reason"fully valid"
18
name"Burden"
type"object"
score1
reason"fully valid"
19
name"Verity Beads"
type"object"
score1
reason"fully valid"
20
name"The Felling"
type"lore"
score1
reason"fully valid"
21
name"The Riven War"
type"lore"
score1
reason"fully valid"
22
name"The Pallid Host"
type"lore"
score1
reason"fully valid"
23
name"The Binding of Reshkai"
type"lore"
score1
reason"fully valid"
24
name"The Tithe of Echoes"
type"lore"
score1
reason"fully valid"
25
name"The Watcher's Prophecy"
type"lore"
score1
reason"fully valid"
97.3159%