From ff2cee12ae3bea58f500337d3ef8170d59f1db28 Mon Sep 17 00:00:00 2001 From: Jelson Rodrigues Date: Thu, 16 Oct 2025 07:21:30 -0300 Subject: [PATCH] chore: remove evaluation limit --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 47a68bf..3e5403b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -327,7 +327,6 @@ fn main() -> anyhow::Result<()> { filtered_chats .clone() .skip(0) - .take(10) .for_each(|result| { let json = result.unwrap(); let talk_histories = &json["talk_histories"];