mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
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:
committed by
Taylor McIntyre
parent
fb547f1a66
commit
f341ca973e
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user