|
|
@@ -8517,6 +8517,16 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ },
|
|
|
+ "500": {
|
|
|
+ "description": "UnknownError",
|
|
|
+ "content": {
|
|
|
+ "application/json": {
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/components/schemas/UnknownError1"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
"description": "Retrieve the active context messages for a v2 session (all messages after the last compaction).",
|
|
|
@@ -8634,6 +8644,16 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ },
|
|
|
+ "500": {
|
|
|
+ "description": "UnknownError",
|
|
|
+ "content": {
|
|
|
+ "application/json": {
|
|
|
+ "schema": {
|
|
|
+ "$ref": "#/components/schemas/UnknownError1"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
"description": "Retrieve projected v2 messages for a session. Items keep the requested order across pages; use cursor.next or cursor.previous to move through the ordered timeline.",
|
|
|
@@ -15735,6 +15755,23 @@
|
|
|
"required": ["_tag", "message"],
|
|
|
"additionalProperties": false
|
|
|
},
|
|
|
+ "UnknownError1": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "_tag": {
|
|
|
+ "type": "string",
|
|
|
+ "enum": ["UnknownError"]
|
|
|
+ },
|
|
|
+ "message": {
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "ref": {
|
|
|
+ "type": "string"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["_tag", "message"],
|
|
|
+ "additionalProperties": false
|
|
|
+ },
|
|
|
"V2SessionMessagesResponse": {
|
|
|
"type": "object",
|
|
|
"properties": {
|