Add combat semantics validator prompt assets
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user