This commit is contained in:
pavel 2026-02-11 01:04:46 +01:00
commit d90052cfd1
3 changed files with 1 additions and 16 deletions

View file

@ -28,7 +28,6 @@ impl Agent {
answer tool once you to give your final answer. current date is {}",
Utc::now().format("%B %d, %Y %H:%M:%S UTC").to_string()
);
println!("initial_message: {}", intro);
let messages = vec![
Message {
role: "system".to_string(),
@ -63,7 +62,6 @@ impl Agent {
}
fn log(&mut self, message: &str) {
println!("{}", message);
self.logs.push_str(message);
self.logs.push('\n');
}