Add combat semantics validator prompt assets

This commit is contained in:
2026-08-28 00:16:23 +00:00
parent fcfff3ad15
commit 6bc883dfb6
9 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "notarius.dnd.scene_descriptions.combat_semantics.llm",
"type": "object",
"additionalProperties": false,
"required": ["verdict", "explanation"],
"properties": {
"verdict": {
"type": "string",
"enum": ["approved", "combat_should_be_added", "combat_should_be_removed"]
},
"explanation": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}