schema update

This commit is contained in:
Roy Han
2026-03-05 11:43:50 -08:00
parent ef74096ed1
commit 9d9e8d8a52
10 changed files with 339 additions and 1 deletions

View File

@@ -3311,6 +3311,13 @@
"title": "ErrorNotification",
"type": "object"
},
"EscalationStatus": {
"enum": [
"approved",
"rejected"
],
"type": "string"
},
"EventMsg": {
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Response event from the agent NOTE: Make sure none of these values have optional types, as it will mess up the extension code-gen.",
@@ -13692,6 +13699,16 @@
"id": {
"type": "string"
},
"metadata": {
"anyOf": [
{
"$ref": "#/definitions/UserMessageMetadata"
},
{
"type": "null"
}
]
},
"type": {
"enum": [
"UserMessage"
@@ -14249,6 +14266,90 @@
}
]
},
"UserMessageMetadata": {
"properties": {
"escalation_status": {
"anyOf": [
{
"$ref": "#/definitions/EscalationStatus"
},
{
"type": "null"
}
]
},
"is_plan_mode": {
"type": [
"boolean",
"null"
]
},
"is_tool_call_escalated": {
"type": [
"boolean",
"null"
]
},
"personality": {
"anyOf": [
{
"$ref": "#/definitions/UserMessagePersonality"
},
{
"type": "null"
}
]
},
"sandbox_policy": {
"anyOf": [
{
"$ref": "#/definitions/UserMessageSandboxPolicy"
},
{
"type": "null"
}
]
},
"user_message_type": {
"anyOf": [
{
"$ref": "#/definitions/UserMessageType"
},
{
"type": "null"
}
]
}
},
"type": "object"
},
"UserMessagePersonality": {
"enum": [
"friendly",
"pragmatic"
],
"type": "string"
},
"UserMessageSandboxPolicy": {
"enum": [
"read_only",
"sandbox",
"full_access"
],
"type": "string"
},
"UserMessageType": {
"enum": [
"prompt",
"prompt_steering",
"prompt_queued",
"prompt_with_ide_context",
"agents_md_default",
"agents_md_custom",
"environment_context"
],
"type": "string"
},
"Verbosity": {
"description": "Controls output length/detail on GPT-5 models via the Responses API. Serialized with lowercase values to match the OpenAI API.",
"enum": [