Skip to main content

MockEngine

Struct MockEngine 

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

A mock engine implementation for Milestone A.

Uses a simple whitespace tokenizer and greedy sampler to demonstrate the “narrow waist” API without requiring a real model or MLX backend.

Implementations§

Source§

impl MockEngine

Source

pub fn new() -> Self

Trait Implementations§

Source§

impl Default for MockEngine

Source§

fn default() -> Self

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

impl LlamaEngine for MockEngine

Source§

fn load_model(&self, _spec: &ModelSpec) -> Result<ModelHandle>

Load a model from disk given a specification.
Source§

fn tokenize(&self, text: &str) -> Result<Vec<TokenId>>

Convert text into a sequence of token IDs.
Source§

fn detokenize(&self, tokens: &[TokenId]) -> Result<String>

Convert token IDs back into text.
Source§

fn prefill( &self, _session: &mut Session, tokens: &[TokenId], ) -> Result<PrefillResult>

Run the prefill phase: process prompt tokens and populate the KV cache.
Source§

fn decode(&self, _session: &mut Session) -> Result<DecodeResult>

Run the decode phase: produce the next token from the model.
Source§

fn embed(&self, texts: &[&str]) -> Result<Vec<Vec<f32>>>

Generate embeddings for a batch of texts (for oxidizedRAG integration).

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, 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 = 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.