remove or add a way to disable println!("count {}", reverse_count);
#28
Labels
bug
Something isn't working
println!("count {}", reverse_count);
#28
First, thanks for your work :)
I'm trying to silence
llama.cpp
output and keep only the answer.I've closed
stderr
temporally while loading the model (this is not a nice approach, but it works).But when I call
predict
I still have an unwanted outputcount 0
.Maybe you can change it to
log::debug!("count {}", reverse_count);
?The text was updated successfully, but these errors were encountered: