vectordb-cli 1.6.0

A CLI tool for semantic code search.
//!
//! Core vector database operations, including embedding handling, indexing, and search structures.

pub mod error;
pub mod embedding;
pub mod provider;
pub mod search;
pub mod snippet_extractor;
pub mod embedding_logic;
pub mod indexing;
mod cache;

// Add the new trait module
pub mod qdrant_client_trait;

// Re-export key types/structs needed elsewhere
pub use crate::vectordb::error::{Result, VectorDBError};

// Optional: Re-export key types if desired at the vectordb level
// pub use db::VectorDB;
// pub use error::VectorDBError;