rig-core 0.37.0

An opinionated library for building LLM powered applications.
Documentation
//! Model-listing helpers for deterministic tests.

use crate::{
    client::ModelLister,
    model::{Model, ModelList, ModelListingError},
    wasm_compat::WasmCompatSend,
};

/// A [`ModelLister`] that returns a preconfigured list of models.
pub struct MockModelLister {
    models: Vec<Model>,
}

impl MockModelLister {
    /// Create a model lister from a fixed model list.
    pub fn new(models: Vec<Model>) -> Self {
        Self { models }
    }
}

impl ModelLister for MockModelLister {
    type Client = Vec<Model>;

    fn new(client: Self::Client) -> Self {
        Self { models: client }
    }

    fn list_all(
        &self,
    ) -> impl std::future::Future<Output = Result<ModelList, ModelListingError>> + WasmCompatSend
    {
        let models = self.models.clone();
        async move { Ok(ModelList::new(models)) }
    }
}