How is the historical conversation resume feature implemented? #27
-
|
In the code, the interaction is achieved via codex proto, and it uses experimental_resume= to perform the resume. However, according to the official codex CLI documentation, the experimental_resume parameter is still in the internal testing stage. When I tried using codex proto -c experimental_resume={rollout-path} directly, I found that the resume did not succeed. Therefore, I’d like to ask how this project actually implements the resume feature. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
There's a resume button at the chat tab, you can click to resume the conversation from path. But Codex change the rollout-path message type, so I have to change the function to parse the file again to show the right list. Currently only shows the old file format. You can wait or create a PR. You can ask codex: after I click the resume button and the list was wrong, read the files from ~/.codex/sessions and fix it. logNote Resume Gap
Implications for the Tauri app
|
Beta Was this translation helpful? Give feedback.
-
|
Btw, there's a new way now — you can use codex app-server via app-server-protocol :) |
Beta Was this translation helpful? Give feedback.
There's a resume button at the chat tab, you can click to resume the conversation from path.
But Codex change the rollout-path message type, so I have to change the function to parse the file again to show the right list. Currently only shows the old file format.
You can wait or create a PR.
You can ask codex: after I click the resume button and the list was wrong, read the files from ~/.codex/sessions and fix it.
log