restore: import verified wave3 baseline
This commit is contained in:
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user