schema update

This commit is contained in:
Roy Han
2026-03-24 19:08:45 -07:00
parent 324d7c6871
commit ab7db1f2bf
8 changed files with 83 additions and 1 deletions

View File

@@ -9422,6 +9422,13 @@
}
]
},
"SubmissionType": {
"enum": [
"prompt",
"prompt_queued"
],
"type": "string"
},
"TerminalInteractionNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
@@ -11952,6 +11959,17 @@
],
"description": "Override the service tier for this turn and subsequent turns."
},
"submissionType": {
"anyOf": [
{
"$ref": "#/definitions/SubmissionType"
},
{
"type": "null"
}
],
"description": "Classify the primary input message submitted with `turn/start`."
},
"summary": {
"anyOf": [
{