schema update

This commit is contained in:
Roy Han
2026-03-12 09:30:52 -07:00
parent 6af6704e28
commit b9aad60c9f
9 changed files with 183 additions and 1 deletions

View File

@@ -366,6 +366,16 @@
],
"writeOnly": true
},
"metadata": {
"anyOf": [
{
"$ref": "#/definitions/ResponseItemMetadata"
},
{
"type": "null"
}
]
},
"phase": {
"anyOf": [
{
@@ -733,6 +743,21 @@
}
]
},
"ResponseItemMetadata": {
"properties": {
"user_message_type": {
"anyOf": [
{
"$ref": "#/definitions/UserMessageType"
},
{
"type": "null"
}
]
}
},
"type": "object"
},
"ResponsesApiWebSearchAction": {
"oneOf": [
{
@@ -833,6 +858,14 @@
"type": "object"
}
]
},
"UserMessageType": {
"enum": [
"prompt",
"prompt_steering",
"prompt_queued"
],
"type": "string"
}
},
"properties": {