muna 0.0.8

Run prediction functions in your Rust apps.
/*
*   Muna
*   Copyright © 2026 NatML Inc. All Rights Reserved.
*/

mod embeddings;
mod schema;
mod utils;

pub use embeddings::*;
pub use schema::*;

use crate::services::{PredictionService, PredictorService};
use crate::beta::remote::RemotePredictionService;

/// Experimental OpenAI client.
#[derive(Clone)]
pub struct OpenAIClient {
    /// Embeddings service.
    pub embeddings: EmbeddingService,
}

impl OpenAIClient {

    pub fn new(
        predictors: PredictorService,
        predictions: PredictionService,
        remote_predictions: RemotePredictionService,
    ) -> Self {
        Self {
            embeddings: EmbeddingService::new(predictors, predictions, remote_predictions),
        }
    }
}