Skip to main content

CommonSamplerParams

Struct CommonSamplerParams 

Source
pub struct CommonSamplerParams { /* private fields */ }
Expand description

Parameters for CommonSampler::new, seeded from llama.cpp’s defaults.

The scalar knobs are a plain public struct (CommonSamplerScalars); everything backed by a container is set through a method, which keeps this wrapper stable when upstream adds fields.

Implementations§

Source§

impl CommonSamplerParams

Source

pub fn new() -> Self

Allocate with llama.cpp’s defaults (temp 0.8, top-k 40, top-p 0.95, …).

§Panics

Panics if the allocation fails.

Source

pub fn scalars(&self) -> CommonSamplerScalars

Read the scalar knobs.

Source

pub fn set_scalars(&mut self, scalars: &CommonSamplerScalars)

Replace the scalar knobs. Read Self::scalars first and modify it, so fields you do not care about keep llama.cpp’s defaults.

Source

pub fn set_grammar( &mut self, grammar: &str, source: GrammarSource, lazy: bool, ) -> Result<(), ShimError>

Constrain sampling with a GBNF grammar.

source decides whether the generation prompt is prefilled — see GrammarSource.

§Errors

Returns CommonSamplerError::Nul for an interior NUL in grammar.

Source

pub fn add_grammar_trigger( &mut self, kind: &str, value: &str, token: LlamaToken, ) -> Result<(), ShimError>

Add a trigger that activates a lazy grammar.

kind matches GrammarTrigger::kind: "token", "word", "pattern" or "pattern_full".

§Errors

Returns CommonSamplerError::InvalidArg for an unknown kind, or CommonSamplerError::Nul for an interior NUL.

Source

pub fn set_generation_prompt(&mut self, prompt: &str) -> Result<(), ShimError>

Set the generation prompt the grammar should be advanced past.

§Errors

Returns CommonSamplerError::Nul for an interior NUL.

Source

pub fn add_logit_bias( &mut self, token: LlamaToken, bias: f32, ) -> Result<(), ShimError>

Bias a token’s logit. Use f32::NEG_INFINITY to ban it outright.

§Errors

Returns CommonSamplerError::InvalidArg if the params handle is bad.

Source

pub fn set_samplers( &mut self, samplers: &[CommonSamplerType], ) -> Result<(), ShimError>

Replace the sampler ordering.

§Errors

Returns CommonSamplerError::InvalidArg if the params handle is bad.

Source

pub fn set_dry_breakers(&mut self, breakers: &[&str]) -> Result<(), ShimError>

Replace the DRY sequence breakers (default: newline, :, ", *).

§Errors

Returns CommonSamplerError::Nul for an interior NUL.

Source

pub fn set_reasoning_budget( &mut self, start: &[LlamaToken], ends: &[Vec<LlamaToken>], forced: &[LlamaToken], message: &str, ) -> Result<(), ShimError>

Cap how many tokens the model may spend inside a reasoning block.

start is the tokenized opening tag (<think>), ends the closing tags — the first doubles as the forcing sequence. forced is emitted when the budget runs out, typically a truncation message followed by the closing tag. Set the budget itself through CommonSamplerScalars::reasoning_budget_tokens.

§Errors

Returns CommonSamplerError::Nul for an interior NUL in message.

Trait Implementations§

Source§

impl Debug for CommonSamplerParams

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for CommonSamplerParams

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Drop for CommonSamplerParams

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
Source§

impl Send for CommonSamplerParams

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more