lvv 0.4.3

A pipeline for embedding datasets with LLMs (Ollama/OpenAI) and loading them into a Qdrant vector database, with caching and job queuing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod dataset;
pub mod source;

pub use source::{FileFormat, FileSource, Source};

#[cfg(feature = "postgres")]
pub use source::PostgresSource;

#[cfg(feature = "sql")]
pub use source::{SqlEngine, SqlSource};

#[cfg(feature = "http")]
pub use source::{HttpSource, Pagination};