mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
Load source rollouts, extract visible conversation, persist a hidden remembered-context packet, and expose the v2 thread/remember RPC for UI integration. Co-authored-by: Codex <noreply@openai.com>
20 lines
347 B
JSON
20 lines
347 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"sourceThreadIds": {
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"sourceThreadIds",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadRememberParams",
|
|
"type": "object"
|
|
} |