mirror of
https://github.com/openai/codex.git
synced 2026-04-27 08:05:51 +00:00
37 lines
675 B
JSON
37 lines
675 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"ContextCompactionKind": {
|
|
"enum": [
|
|
"classic",
|
|
"prefix"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"description": "Deprecated: Use `ContextCompaction` item type instead.",
|
|
"properties": {
|
|
"kind": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/ContextCompactionKind"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
},
|
|
"turnId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"threadId",
|
|
"turnId"
|
|
],
|
|
"title": "ContextCompactedNotification",
|
|
"type": "object"
|
|
} |