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>
This commit is contained in:
Lance Pereira
2026-04-09 16:10:43 -04:00
committed by Taylor McIntyre
parent fb547f1a66
commit f341ca973e
23 changed files with 1056 additions and 197 deletions

View File

@@ -0,0 +1,20 @@
{
"$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"
}