We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a313dfd commit 174c64eCopy full SHA for 174c64e
crates/chat-cli/src/cli/chat/conversation.rs
@@ -253,6 +253,10 @@ impl ConversationState {
253
self.transcript = checkpoint.main_transcript;
254
self.latest_summary = checkpoint.main_latest_summary;
255
self.valid_history_range = (0, self.history.len());
256
+ if let Some(manager) = self.checkpoint_manager.as_mut() {
257
+ manager.message_locked = false;
258
+ manager.pending_user_message = None;
259
+ }
260
}
261
262
/// Enter tangent mode - creates checkpoint of current state
0 commit comments