mirror of
https://github.com/openai/codex.git
synced 2026-04-24 06:35:50 +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
369 B
JSON
20 lines
369 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"contextPreview": {
|
|
"type": "string"
|
|
},
|
|
"rememberedThreadIds": {
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"contextPreview",
|
|
"rememberedThreadIds"
|
|
],
|
|
"title": "ThreadRememberResponse",
|
|
"type": "object"
|
|
} |