restore: import verified wave3 baseline

This commit is contained in:
Codex
2026-07-28 03:16:01 -04:00
parent 4157f8790d
commit cf9507a9dd
41 changed files with 12251 additions and 982 deletions
+23 -13
View File
@@ -2,16 +2,8 @@
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TurnRequest",
"type": "object",
"required": [
"storyId",
"branchId",
"expectedNodeId",
"actionId",
"intent",
"input"
],
"properties": {
"storyId": {
"actionId": {
"type": "string"
},
"branchId": {
@@ -20,15 +12,33 @@
"expectedNodeId": {
"type": "string"
},
"actionId": {
"input": {
"type": "string"
},
"intent": {
"enum": ["speak_or_act", "continue", "regenerate", "push_check"]
"$ref": "#/$defs/TurnIntent"
},
"input": {
"storyId": {
"type": "string"
}
},
"additionalProperties": false
"required": [
"storyId",
"branchId",
"expectedNodeId",
"actionId",
"intent",
"input"
],
"$defs": {
"TurnIntent": {
"type": "string",
"enum": [
"speak_or_act",
"continue",
"regenerate",
"push_check"
]
}
}
}