diff --git a/src/handlers/llama.rs b/src/handlers/llama.rs index f1983f71bbf10eef9378d65110e020d21745e8ff..4efb8b71fc0e310064db1fd88d7416bb64c11791 100644 --- a/src/handlers/llama.rs +++ b/src/handlers/llama.rs @@ -80,7 +80,6 @@ impl LlamaHandler { txt: &str, context: Option<GenerationContext>, ) { - println!("Replying to {}", txt); if txt.is_empty() { return; } @@ -148,8 +147,6 @@ impl LineHandler for LlamaHandler { let txt = &msg.content; - dbg!(&msg); - if let Some(p) = &msg.referenced_message { let x = { let l = self.contexts.lock().await;