Files
codex/codex-rs/app-server-protocol/schema/json/v2/ThreadRememberResponse.json
Lance Pereira f341ca973e Add backend remember-context RPC
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>
2026-04-10 10:32:42 -07:00

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"
}