rig_lancedb/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
use lancedb::{
query::{QueryBase, VectorQuery},
DistanceType,
};
use rig::{
embeddings::EmbeddingModel,
vector_store::{VectorStoreError, VectorStoreIndex},
};
use serde::Deserialize;
use serde_json::Value;
use utils::QueryToJson;
mod utils;
fn lancedb_to_rig_error(e: lancedb::Error) -> VectorStoreError {
VectorStoreError::DatastoreError(Box::new(e))
}
fn serde_to_rig_error(e: serde_json::Error) -> VectorStoreError {
VectorStoreError::JsonError(e)
}
/// # Example
/// ```
/// use std::{env, sync::Arc};
///
/// use arrow_array::RecordBatchIterator;
/// use fixture::{as_record_batch, schema};
/// use rig::{
/// embeddings::{EmbeddingModel, EmbeddingsBuilder},
/// providers::openai::{Client, TEXT_EMBEDDING_ADA_002},
/// vector_store::VectorStoreIndexDyn,
/// };
/// use rig_lancedb::{LanceDbVectorStore, SearchParams};
/// use serde::Deserialize;
///
/// #[derive(Deserialize, Debug)]
/// pub struct VectorSearchResult {
/// pub id: String,
/// pub content: String,
/// }
///
/// // Initialize OpenAI client. Use this to generate embeddings (and generate test data for RAG demo).
/// let openai_api_key = env::var("OPENAI_API_KEY").expect("OPENAI_API_KEY not set");
/// let openai_client = Client::new(&openai_api_key);
///
/// // Select the embedding model and generate our embeddings
/// let model = openai_client.embedding_model(TEXT_EMBEDDING_ADA_002);
///
/// let embeddings = EmbeddingsBuilder::new(model.clone())
/// .simple_document("doc0", "Definition of *flumbrel (noun)*: a small, seemingly insignificant item that you constantly lose or misplace, such as a pen, hair tie, or remote control.")
/// .simple_document("doc1", "Definition of *zindle (verb)*: to pretend to be working on something important while actually doing something completely unrelated or unproductive")
/// .simple_document("doc2", "Definition of *glimber (adjective)*: describing a state of excitement mixed with nervousness, often experienced before an important event or decision.")
/// .build()
/// .await?;
///
/// // Define search_params params that will be used by the vector store to perform the vector search.
/// let search_params = SearchParams::default();
///
/// // Initialize LanceDB locally.
/// let db = lancedb::connect("data/lancedb-store").execute().await?;
///
/// // Create table with embeddings.
/// let record_batch = as_record_batch(embeddings, model.ndims());
/// let table = db
/// .create_table(
/// "definitions",
/// RecordBatchIterator::new(vec![record_batch], Arc::new(schema(model.ndims()))),
/// )
/// .execute()
/// .await?;
///
/// let vector_store = LanceDbVectorStore::new(table, model, "id", search_params).await?;
///
/// // Query the index
/// let results = vector_store
/// .top_n("My boss says I zindle too much, what does that mean?", 1)
/// .await?
/// .into_iter()
/// .map(|(score, id, doc)| {
/// anyhow::Ok((
/// score,
/// id,
/// serde_json::from_value::<VectorSearchResult>(doc)?,
/// ))
/// })
/// .collect::<Result<Vec<_>, _>>()?;
///
/// println!("Results: {:?}", results);
/// ```
pub struct LanceDbVectorStore<M: EmbeddingModel> {
/// Defines which model is used to generate embeddings for the vector store.
model: M,
/// LanceDB table containing embeddings.
table: lancedb::Table,
/// Column name in `table` that contains the id of a record.
id_field: String,
/// Vector search params that are used during vector search operations.
search_params: SearchParams,
}
impl<M: EmbeddingModel> LanceDbVectorStore<M> {
/// Apply the search_params to the vector query.
/// This is a helper function used by the methods `top_n` and `top_n_ids` of the `VectorStoreIndex` trait.
fn build_query(&self, mut query: VectorQuery) -> VectorQuery {
let SearchParams {
distance_type,
search_type,
nprobes,
refine_factor,
post_filter,
column,
} = self.search_params.clone();
if let Some(distance_type) = distance_type {
query = query.distance_type(distance_type);
}
if let Some(SearchType::Flat) = search_type {
query = query.bypass_vector_index();
}
if let Some(SearchType::Approximate) = search_type {
if let Some(nprobes) = nprobes {
query = query.nprobes(nprobes);
}
if let Some(refine_factor) = refine_factor {
query = query.refine_factor(refine_factor);
}
}
if let Some(true) = post_filter {
query = query.postfilter();
}
if let Some(column) = column {
query = query.column(column.as_str())
}
query
}
}
/// See [LanceDB vector search](https://lancedb.github.io/lancedb/search/) for more information.
#[derive(Debug, Clone)]
pub enum SearchType {
// Flat search, also called ENN or kNN.
Flat,
/// Approximal Nearest Neighbor search, also called ANN.
Approximate,
}
/// Parameters used to perform a vector search on a LanceDb table.
#[derive(Debug, Clone, Default)]
pub struct SearchParams {
distance_type: Option<DistanceType>,
search_type: Option<SearchType>,
nprobes: Option<usize>,
refine_factor: Option<u32>,
post_filter: Option<bool>,
column: Option<String>,
}
impl SearchParams {
/// Sets the distance type of the search params.
/// Always set the distance_type to match the value used to train the index.
/// The default is DistanceType::L2.
pub fn distance_type(mut self, distance_type: DistanceType) -> Self {
self.distance_type = Some(distance_type);
self
}
/// Sets the search type of the search params.
/// By default, ANN will be used if there is an index on the table and kNN will be used if there is NO index on the table.
/// To use the mentioned defaults, do not set the search type.
pub fn search_type(mut self, search_type: SearchType) -> Self {
self.search_type = Some(search_type);
self
}
/// Sets the nprobes of the search params.
/// Only set this value only when the search type is ANN.
/// See [LanceDb ANN Search](https://lancedb.github.io/lancedb/ann_indexes/#querying-an-ann-index) for more information.
pub fn nprobes(mut self, nprobes: usize) -> Self {
self.nprobes = Some(nprobes);
self
}
/// Sets the refine factor of the search params.
/// Only set this value only when search type is ANN.
/// See [LanceDb ANN Search](https://lancedb.github.io/lancedb/ann_indexes/#querying-an-ann-index) for more information.
pub fn refine_factor(mut self, refine_factor: u32) -> Self {
self.refine_factor = Some(refine_factor);
self
}
/// Sets the post filter of the search params.
/// If set to true, filtering will happen after the vector search instead of before.
/// See [LanceDb pre/post filtering](https://lancedb.github.io/lancedb/sql/#pre-and-post-filtering) for more information.
pub fn post_filter(mut self, post_filter: bool) -> Self {
self.post_filter = Some(post_filter);
self
}
/// Sets the column of the search params.
/// Only set this value if there is more than one column that contains lists of floats.
/// If there is only one column of list of floats, this column will be chosen for the vector search automatically.
pub fn column(mut self, column: &str) -> Self {
self.column = Some(column.to_string());
self
}
}
impl<M: EmbeddingModel> LanceDbVectorStore<M> {
/// Create an instance of `LanceDbVectorStore` with an existing table and model.
/// Define the id field name of the table.
/// Define search parameters that will be used to perform vector searches on the table.
pub async fn new(
table: lancedb::Table,
model: M,
id_field: &str,
search_params: SearchParams,
) -> Result<Self, lancedb::Error> {
Ok(Self {
table,
model,
id_field: id_field.to_string(),
search_params,
})
}
}
impl<M: EmbeddingModel + std::marker::Sync + Send> VectorStoreIndex for LanceDbVectorStore<M> {
async fn top_n<T: for<'a> Deserialize<'a> + std::marker::Send>(
&self,
query: &str,
n: usize,
) -> Result<Vec<(f64, String, T)>, VectorStoreError> {
let prompt_embedding = self.model.embed_document(query).await?;
let query = self
.table
.vector_search(prompt_embedding.vec.clone())
.map_err(lancedb_to_rig_error)?
.limit(n);
self.build_query(query)
.execute_query()
.await?
.into_iter()
.enumerate()
.map(|(i, value)| {
Ok((
match value.get("_distance") {
Some(Value::Number(distance)) => distance.as_f64().unwrap_or_default(),
_ => 0.0,
},
match value.get(self.id_field.clone()) {
Some(Value::String(id)) => id.to_string(),
_ => format!("unknown{i}"),
},
serde_json::from_value(value).map_err(serde_to_rig_error)?,
))
})
.collect()
}
async fn top_n_ids(
&self,
query: &str,
n: usize,
) -> Result<Vec<(f64, String)>, VectorStoreError> {
let prompt_embedding = self.model.embed_document(query).await?;
let query = self
.table
.query()
.select(lancedb::query::Select::Columns(vec![self.id_field.clone()]))
.nearest_to(prompt_embedding.vec.clone())
.map_err(lancedb_to_rig_error)?
.limit(n);
self.build_query(query)
.execute_query()
.await?
.into_iter()
.map(|value| {
Ok((
match value.get("distance") {
Some(Value::Number(distance)) => distance.as_f64().unwrap_or_default(),
_ => 0.0,
},
match value.get(self.id_field.clone()) {
Some(Value::String(id)) => id.to_string(),
_ => "".to_string(),
},
))
})
.collect()
}
}