mirror of
https://github.com/openai/codex.git
synced 2026-09-05 15:18:41 +00:00
## What changed - Make `thread/turns/list`, `thread/items/list`, and `thread/revert` available without the experimental API capability. - Stabilize `thread/reverted`, `thread.historyMode`, and the pagination fields used by `thread/resume` and `thread/fork`. - Publish the promoted requests, responses, and fields in the stable JSON and TypeScript schemas, and update the app-server documentation accordingly. GitOrigin-RevId: 18b8c53c265211597bb1a62fd62f66f4a3df5f06
19 lines
579 B
JSON
Generated
19 lines
579 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Replace a paginated thread's durable history with the prefix before one turn.\n\nThis only changes persisted conversation history. It does not revert local file changes.",
|
|
"properties": {
|
|
"beforeTurnId": {
|
|
"description": "Turn excluded from the replacement history, together with every later turn.",
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"beforeTurnId",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadRevertParams",
|
|
"type": "object"
|
|
} |