use anyhow::{Context, Result};
use candle_core::{Device, Tensor};
use candle_nn::VarBuilder;
use candle_transformers::models::bert::{BertModel, Config};
use hf_hub::{Repo, RepoType, api::sync::Api};
use std::sync::{Arc, Mutex};
use tokenizers::Tokenizer;
use crate::config::EmbeddingModel;
const MINILM_MODEL_ID: &str = "sentence-transformers/all-MiniLM-L6-v2";
#[allow(dead_code)]
const MINILM_DIM: usize = 384;
const MAX_SEQ_LEN: usize = 256;
const FALLBACK_MODEL_SUBDIR: &str =
".cache/huggingface/hub/models--sentence-transformers--all-MiniLM-L6-v2/snapshots/main";
const NOMIC_OLLAMA_MODEL: &str = "nomic-embed-text";
#[allow(dead_code)]
const NOMIC_DIM: usize = 768;
#[derive(Clone)]
pub enum Embedder {
Local {
model: Arc<Mutex<BertModel>>,
tokenizer: Arc<Tokenizer>,
device: Device,
},
Ollama {
client: Arc<crate::llm::OllamaClient>,
model_name: String,
},
}
impl Embedder {
#[allow(dead_code)]
pub fn new() -> Result<Self> {
Self::new_local()
}
pub fn new_local() -> Result<Self> {
let device = Device::Cpu;
let (config_path, tokenizer_path, weights_path) = match Self::download_via_hf_hub() {
Ok(paths) => paths,
Err(e) => {
eprintln!("ai-memory: hf-hub download failed ({e}), trying fallback dir");
Self::load_from_fallback()?
}
};
let config_data =
std::fs::read_to_string(&config_path).context("failed to read config.json")?;
let config: Config =
serde_json::from_str(&config_data).context("failed to parse config.json")?;
let mut tokenizer = Tokenizer::from_file(&tokenizer_path)
.map_err(|e| anyhow::anyhow!("failed to load tokenizer: {e}"))?;
let truncation = tokenizers::TruncationParams {
max_length: MAX_SEQ_LEN,
..Default::default()
};
tokenizer
.with_truncation(Some(truncation))
.map_err(|e| anyhow::anyhow!("failed to set truncation: {e}"))?;
tokenizer.with_padding(None);
let vb = unsafe {
VarBuilder::from_mmaped_safetensors(&[weights_path], candle_core::DType::F32, &device)
.context("failed to load model weights")?
};
let model = BertModel::load(vb, &config).context("failed to build BertModel")?;
Ok(Self::Local {
model: Arc::new(Mutex::new(model)),
tokenizer: Arc::new(tokenizer),
device,
})
}
pub fn new_ollama(client: Arc<crate::llm::OllamaClient>) -> Self {
Self::Ollama {
client,
model_name: NOMIC_OLLAMA_MODEL.to_string(),
}
}
pub fn for_model(
model: EmbeddingModel,
ollama_client: Option<Arc<crate::llm::OllamaClient>>,
) -> Result<Self> {
match model {
EmbeddingModel::MiniLmL6V2 => Self::new_local(),
EmbeddingModel::NomicEmbedV15 => {
let client = ollama_client.ok_or_else(|| {
anyhow::anyhow!("nomic-embed-text-v1.5 requires Ollama (smart tier or above)")
})?;
if let Err(e) = client.ensure_embed_model(NOMIC_OLLAMA_MODEL) {
eprintln!("ai-memory: warning: failed to pull nomic model: {e}");
}
Ok(Self::new_ollama(client))
}
}
}
#[allow(dead_code)]
pub fn dim(&self) -> usize {
match self {
Self::Local { .. } => MINILM_DIM,
Self::Ollama { .. } => NOMIC_DIM,
}
}
pub fn model_description(&self) -> &str {
match self {
Self::Local { .. } => "all-MiniLM-L6-v2 (384-dim, local)",
Self::Ollama { .. } => "nomic-embed-text-v1.5 (768-dim, Ollama)",
}
}
pub fn embed(&self, text: &str) -> Result<Vec<f32>> {
match self {
Self::Local {
model,
tokenizer,
device,
} => {
let model_guard = model
.lock()
.map_err(|e| anyhow::anyhow!("model lock poisoned: {e}"))?;
Self::embed_local(&model_guard, tokenizer, device, text)
}
Self::Ollama { client, model_name } => client.embed_text(text, model_name),
}
}
fn embed_local(
model: &BertModel,
tokenizer: &Tokenizer,
device: &Device,
text: &str,
) -> Result<Vec<f32>> {
let encoding = tokenizer
.encode(text, true)
.map_err(|e| anyhow::anyhow!("tokenisation failed: {e}"))?;
let input_ids = encoding.get_ids();
let attention_mask = encoding.get_attention_mask();
let token_type_ids = encoding.get_type_ids();
let seq_len = input_ids.len();
let input_ids = Tensor::new(input_ids, device)?.reshape((1, seq_len))?;
let attention_mask_tensor = Tensor::new(attention_mask, device)?.reshape((1, seq_len))?;
let token_type_ids = Tensor::new(token_type_ids, device)?.reshape((1, seq_len))?;
let hidden = model
.forward(&input_ids, &token_type_ids, Some(&attention_mask_tensor))
.context("model forward pass failed")?;
let mask = attention_mask_tensor
.unsqueeze(2)?
.to_dtype(candle_core::DType::F32)?
.broadcast_as(hidden.shape())?;
let masked = hidden.mul(&mask)?;
let summed = masked.sum(1)?;
let count = mask.sum(1)?.clamp(1e-9, f64::MAX)?;
let pooled = summed.div(&count)?;
let norm = pooled
.sqr()?
.sum_keepdim(1)?
.sqrt()?
.clamp(1e-12, f64::MAX)?;
let normalised = pooled.broadcast_div(&norm)?;
let embedding: Vec<f32> = normalised.squeeze(0)?.to_vec1()?;
Ok(embedding)
}
#[allow(dead_code)]
pub fn embed_batch(&self, texts: &[&str]) -> Result<Vec<Vec<f32>>> {
texts.iter().map(|t| self.embed(t)).collect()
}
pub fn cosine_similarity(a: &[f32], b: &[f32]) -> f32 {
if a.len() != b.len() {
return 0.0;
}
let dot: f32 = a.iter().zip(b.iter()).map(|(x, y)| x * y).sum();
let norm_a: f32 = a.iter().map(|x| x * x).sum::<f32>().sqrt();
let norm_b: f32 = b.iter().map(|x| x * x).sum::<f32>().sqrt();
let denom = norm_a * norm_b;
if denom < 1e-12 { 0.0 } else { dot / denom }
}
#[must_use]
pub fn fuse(primary: &[f32], secondary: &[f32], primary_weight: f32) -> Vec<f32> {
if primary.len() != secondary.len() {
return primary.to_vec();
}
let w = primary_weight.clamp(0.0, 1.0);
let one_minus_w = 1.0 - w;
primary
.iter()
.zip(secondary.iter())
.map(|(p, s)| w * p + one_minus_w * s)
.collect()
}
fn download_via_hf_hub() -> Result<(std::path::PathBuf, std::path::PathBuf, std::path::PathBuf)>
{
let api = Api::new().context("failed to initialise HuggingFace Hub API")?;
let repo = api.repo(Repo::new(MINILM_MODEL_ID.to_string(), RepoType::Model));
let config_path = repo
.get("config.json")
.context("failed to download config.json")?;
let tokenizer_path = repo
.get("tokenizer.json")
.context("failed to download tokenizer.json")?;
let weights_path = repo
.get("model.safetensors")
.context("failed to download model.safetensors")?;
Ok((config_path, tokenizer_path, weights_path))
}
fn load_from_fallback() -> Result<(std::path::PathBuf, std::path::PathBuf, std::path::PathBuf)>
{
let home = std::env::var("HOME").unwrap_or_else(|_| "/root".to_string());
let dir = std::path::PathBuf::from(home).join(FALLBACK_MODEL_SUBDIR);
let dir = dir.as_path();
let config = dir.join("config.json");
let tokenizer = dir.join("tokenizer.json");
let weights = dir.join("model.safetensors");
if config.exists() && tokenizer.exists() && weights.exists() {
Ok((config, tokenizer, weights))
} else {
anyhow::bail!(
"model files not found in fallback dir: {}. Download them manually from https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2",
dir.display()
)
}
}
}
#[allow(dead_code)]
pub const EMBEDDING_DIM: usize = MINILM_DIM;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn cosine_similarity_identical() {
let v = vec![1.0, 0.0, 0.0];
let sim = Embedder::cosine_similarity(&v, &v);
assert!((sim - 1.0).abs() < 1e-6);
}
#[test]
fn cosine_similarity_orthogonal() {
let a = vec![1.0, 0.0, 0.0];
let b = vec![0.0, 1.0, 0.0];
let sim = Embedder::cosine_similarity(&a, &b);
assert!(sim.abs() < 1e-6);
}
#[test]
fn cosine_similarity_opposite() {
let a = vec![1.0, 0.0];
let b = vec![-1.0, 0.0];
let sim = Embedder::cosine_similarity(&a, &b);
assert!((sim + 1.0).abs() < 1e-6);
}
#[test]
fn cosine_similarity_zero_vector() {
let a = vec![0.0, 0.0, 0.0];
let b = vec![1.0, 2.0, 3.0];
let sim = Embedder::cosine_similarity(&a, &b);
assert_eq!(sim, 0.0);
}
#[test]
fn cosine_similarity_dimension_mismatch() {
let a = vec![1.0, 0.0, 0.0];
let b = vec![1.0, 0.0]; let sim = Embedder::cosine_similarity(&a, &b);
assert_eq!(sim, 0.0);
}
#[test]
fn fuse_weighted_sum() {
let p = vec![1.0, 0.0, 0.0];
let s = vec![0.0, 1.0, 0.0];
let f = Embedder::fuse(&p, &s, 0.7);
assert!((f[0] - 0.7).abs() < 1e-6);
assert!((f[1] - 0.3).abs() < 1e-6);
assert!((f[2] - 0.0).abs() < 1e-6);
}
#[test]
fn fuse_primary_weight_clamped() {
let p = vec![1.0, 1.0];
let s = vec![0.0, 0.0];
let f = Embedder::fuse(&p, &s, 2.0);
assert!((f[0] - 1.0).abs() < 1e-6);
assert!((f[1] - 1.0).abs() < 1e-6);
let f = Embedder::fuse(&p, &s, -0.5);
assert!((f[0] - 0.0).abs() < 1e-6);
assert!((f[1] - 0.0).abs() < 1e-6);
}
#[test]
fn fuse_dimension_mismatch_returns_primary() {
let p = vec![1.0, 2.0, 3.0];
let s = vec![4.0, 5.0]; let f = Embedder::fuse(&p, &s, 0.7);
assert_eq!(f, p);
}
#[test]
fn fuse_cosine_pulls_toward_context() {
let q = vec![1.0_f32, 0.0];
let ctx = vec![0.0_f32, 1.0];
let fused = Embedder::fuse(&q, &ctx, 0.7);
let sim_q = Embedder::cosine_similarity(&fused, &q);
let sim_ctx = Embedder::cosine_similarity(&fused, &ctx);
assert!(sim_q > sim_ctx);
assert!(sim_q > 0.9); assert!(sim_ctx > 0.3); }
}