From 81fd2ab92fe8a23c0dd7416fcfe395ab0e06a629 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Sat, 29 Nov 2025 15:44:30 +1100 Subject: [PATCH] unused var --- crates/g3-core/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);