diff --git a/crates/g3-core/src/lib.rs b/crates/g3-core/src/lib.rs index c3b22bd..b8e2777 100644 --- a/crates/g3-core/src/lib.rs +++ b/crates/g3-core/src/lib.rs @@ -1720,7 +1720,7 @@ impl Agent { let mut summary_lines = Vec::new(); for message in &self.context_window.conversation_history { - let timestamp = chrono::Local::now().format("%Y-%m-%d %H:%M:%S").to_string(); + let _timestamp = chrono::Local::now().format("%Y-%m-%d %H:%M:%S").to_string(); // Estimate tokens for this message let message_tokens = ContextWindow::estimate_tokens(&message.content);