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

@@ -12027,6 +12027,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"
},
@@ -12035,6 +12048,7 @@
}
},
"required": [
"completedAt",
"threadId",
"turn"
],
@@ -12314,6 +12328,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"
},
@@ -12322,6 +12341,7 @@
}
},
"required": [
"createdAt",
"threadId",
"turn"
],