diff --git a/src/agent/runner.rs b/src/agent/runner.rs index 9ea1778..6312bac 100644 --- a/src/agent/runner.rs +++ b/src/agent/runner.rs @@ -985,7 +985,7 @@ impl Agent { /// Returns true if the log had content to restore. pub fn restore_from_log(&mut self) -> bool { let entries = match &self.conversation_log { - Some(log) => match log.read_tail(2 * 1024 * 1024) { + Some(log) => match log.read_tail(8 * 1024 * 1024) { Ok(entries) if !entries.is_empty() => entries, _ => return false, },