Skip to main content

synaptic_embeddings/
lib.rs

1mod cached;
2mod fake;
3
4pub use cached::CacheBackedEmbeddings;
5pub use fake::FakeEmbeddings;
6
7// Re-export the Embeddings trait from core (forward-declared there).
8pub use synaptic_core::Embeddings;