Merge branch 'rhan/oob-turn-metadata' into rhan/oob-queue-data

This commit is contained in:
rhan-oai
2026-04-01 13:47:46 -07:00
committed by GitHub
8 changed files with 101 additions and 8 deletions

View File

@@ -14181,6 +14181,19 @@
"TurnCompletedNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"completedAt": {
"description": "Unix timestamp (in seconds) when the turn completed.",
"format": "int64",
"type": "integer"
},
"durationMs": {
"description": "Duration between turn start and completion in milliseconds, if known.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"threadId": {
"type": "string"
},
@@ -14189,6 +14202,7 @@
}
},
"required": [
"completedAt",
"threadId",
"turn"
],
@@ -14468,6 +14482,11 @@
"TurnStartedNotification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"createdAt": {
"description": "Unix timestamp (in seconds) when the turn started.",
"format": "int64",
"type": "integer"
},
"threadId": {
"type": "string"
},
@@ -14476,6 +14495,7 @@
}
},
"required": [
"createdAt",
"threadId",
"turn"
],