codex: fix CI failure on PR #14422

This commit is contained in:
Ahmed Ibrahim
2026-03-11 21:57:26 -07:00
parent 271b723b44
commit 1451f288b9
9 changed files with 115 additions and 99 deletions

View File

@@ -6180,16 +6180,10 @@
"description": "Identifier for the collab tool call.",
"type": "string"
},
"model": {
"type": "string"
},
"prompt": {
"description": "Initial prompt sent to the agent. Can be empty to prevent CoT leaking at the beginning.",
"type": "string"
},
"reasoning_effort": {
"$ref": "#/definitions/ReasoningEffort"
},
"sender_thread_id": {
"allOf": [
{
@@ -6208,9 +6202,7 @@
},
"required": [
"call_id",
"model",
"prompt",
"reasoning_effort",
"sender_thread_id",
"type"
],
@@ -6670,6 +6662,24 @@
"description": "Identifier for the collab tool call.",
"type": "string"
},
"model": {
"description": "Model configured for the receiver agent when available.",
"type": [
"string",
"null"
]
},
"reasoning_effort": {
"anyOf": [
{
"$ref": "#/definitions/ReasoningEffort"
},
{
"type": "null"
}
],
"description": "Reasoning effort configured for the receiver agent when available."
},
"receiver_agent_nickname": {
"description": "Optional nickname assigned to the receiver agent.",
"type": [