//! Core library for ripvec semantic code search.
//!
//! Provides pluggable embedding backends ([`backend::EmbedBackend`] trait with
//! CPU, CUDA, Metal, and MLX implementations), tree-sitter code chunking, parallel
//! embedding, and cosine similarity ranking.
pub use Error;
/// Convenience Result type for ripvec-core.
pub type Result<T> = Result;