Skip to main content

synaptic_embeddings/
lib.rs

1mod cached;
2mod fake;
3mod ollama;
4mod openai;
5
6pub use cached::CacheBackedEmbeddings;
7pub use fake::FakeEmbeddings;
8pub use ollama::{OllamaEmbeddings, OllamaEmbeddingsConfig};
9pub use openai::{OpenAiEmbeddings, OpenAiEmbeddingsConfig};
10
11// Re-export the Embeddings trait from core (forward-declared there).
12pub use synaptic_core::Embeddings;