Skip to main content

CachedTokenizer

Struct CachedTokenizer 

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

Caching wrapper around an inner tokenizer.

Implements Encoder, Decoder, and Tokenizer; decode calls pass through to the inner tokenizer (decoding is fast and rarely repeated).

Implementations§

Source§

impl CachedTokenizer

Source

pub fn new( inner: Arc<dyn Tokenizer>, special_tokens: Vec<String>, max_memory_bytes: usize, ) -> Result<Self>

Construct a cached tokenizer.

special_tokens is the list of atomic special-token strings the inner tokenizer recognizes (typically extracted via the HuggingFace tokenizer’s get_added_tokens_decoder() filtering by special == true). An empty list disables L1 — encode/encode_batch short-circuit to the inner tokenizer without touching the cache or its counters.

max_memory_bytes is the L1 cache byte budget.

§Errors

Returns the inner tokenizer’s compatibility error when it cannot be safely wrapped in the prefix cache.

Source

pub fn with_extend(self, enabled: bool) -> Self

Enable partial-hit extension. When on, a partial cache hit also caches the freshly-tokenized suffix at its deepest special-token boundary, so each turn of a growing multi-turn conversation hits deeper than the last and per-turn tokenization cost stops growing with conversation length. Default off.

Source

pub fn with_observer(self, on_hit: CacheEventFn, on_miss: CacheEventFn) -> Self

Install hit/miss callbacks so each L1 lookup pushes an event into the supplied closures (e.g. Prometheus::Counter::inc). Replaces any previously-set observer.

Source

pub fn with_token_observer(self, observer: CacheTokenUsageFn) -> Self

Install a callback that receives exact cached and uncached token counts after each successful encode while L1 is active. A partial hit reports both categories, which lets consumers maintain token-level cache totals and derive a reuse ratio. Replaces any previously-set token observer.

This observer is not called when the special-token set is empty (and L1 is therefore disabled) or when encoding returns an error.

Source

pub fn cache_stats(&self) -> L1CacheStats

Snapshot of L1 cache statistics (cumulative hits/misses/entries/memory).

Source

pub fn clear_cache(&self)

Clear all cached entries and reset counters.

Source

pub fn inner(&self) -> &Arc<dyn Tokenizer>

Access the underlying tokenizer (e.g. for downcasting to a concrete type).

Trait Implementations§

Source§

impl Decoder for CachedTokenizer

Source§

fn decode( &self, token_ids: &[TokenIdType], skip_special_tokens: bool, ) -> Result<DecodeResult>

Source§

impl Encoder for CachedTokenizer

Source§

fn encode(&self, input: &str) -> Result<Encoding>

Source§

fn encode_batch(&self, inputs: &[&str]) -> Result<Vec<Encoding>>

Source§

impl Tokenizer for CachedTokenizer

Source§

fn validate_prefix_cache(&self) -> Result<()>

Validate that this tokenizer can be safely wrapped in the prefix cache. Read more
Source§

fn with_options(self, options: TokenizerOptions) -> Self
where Self: Sized,

Apply construction-time TokenizerOptions. Read more

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

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