vectordb-cli 1.4.5

A CLI tool for semantic code search.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//!
//! 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;

// 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;