diff --git a/src/bin/poc-agent.rs b/src/bin/poc-agent.rs index da57ab9..2767d5f 100644 --- a/src/bin/poc-agent.rs +++ b/src/bin/poc-agent.rs @@ -1063,6 +1063,8 @@ fn replay_session_to_ui(entries: &[types::ConversationEntry], ui_tx: &ui_channel let mut target = StreamTarget::Conversation; for entry in entries { + // Memory entries are in the context window but not the conversation display + if entry.is_memory() { continue; } let msg = entry.message(); match msg.role { types::Role::System => {}