Skip to main content

llama_cpp_bindings/
ingest_outcome.rs

1use crate::sampled_token::SampledToken;
2
3#[derive(Clone, Debug)]
4pub struct IngestOutcome {
5    pub sampled_token: SampledToken,
6    pub visible_piece: String,
7    pub raw_piece: String,
8}