llama-cpp-log-decoder 0.8.0

Decoder for the llama.cpp / ggml log callback stream
Documentation
1
2
3
4
5
6
7
use crate::log_level::LogLevel;

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct LogLine {
    pub level: LogLevel,
    pub text: String,
}