Skip to main content

llama_cpp_bindings/model/params/
fit_result.rs

1/// Result of [`crate::model::params::LlamaModelParams::fit_params`].
2#[derive(Debug, Clone, Copy, Eq, PartialEq)]
3pub struct FitResult {
4    /// The context size after fitting (may have been reduced from the requested value).
5    pub n_ctx: u32,
6}