// embeddings/mod.rs — public re-exports for the embeddings sub-module.
/// LRU cache for embedding vectors keyed by text.
pubmodcache;/// gRPC client to the Python embedding service.
pubmodclient;/// Domain types for embedding requests and responses.
pubmodtypes;pubusecache::{EmbeddingCache, EmbeddingCacheStats};pubuseclient::{EmbeddingClient, EmbeddingProvider};pubusetypes::{EmbedVector, EmbeddingRequest, EmbeddingResponse, ModelInfo};