rig/embeddings.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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
//! This module provides functionality for working with embeddings and embedding models.
//! Embeddings are numerical representations of documents or other objects, typically used in
//! natural language processing (NLP) tasks such as text classification, information retrieval,
//! and document similarity.
//!
//! The module defines the [EmbeddingModel] trait, which represents an embedding model that can
//! generate embeddings for documents. It also provides an implementation of the [EmbeddingsBuilder]
//! struct, which allows users to build collections of document embeddings using different embedding
//! models and document sources.
//!
//! The module also defines the [Embedding] struct, which represents a single document embedding,
//! and the [DocumentEmbeddings] struct, which represents a document along with its associated
//! embeddings. These structs are used to store and manipulate collections of document embeddings.
//!
//! Finally, the module defines the [EmbeddingError] enum, which represents various errors that
//! can occur during embedding generation or processing.
//!
//! # Example
//! ```rust
//! use rig::providers::openai::{Client, self};
//! use rig::embeddings::{EmbeddingModel, EmbeddingsBuilder};
//!
//! // Initialize the OpenAI client
//! let openai = Client::new("your-openai-api-key");
//!
//! // Create an instance of the `text-embedding-ada-002` model
//! let embedding_model = openai.embedding_model(openai::TEXT_EMBEDDING_ADA_002);
//!
//! // Create an embeddings builder and add documents
//! let embeddings = EmbeddingsBuilder::new(embedding_model)
//! .simple_document("doc1", "This is the first document.")
//! .simple_document("doc2", "This is the second document.")
//! .build()
//! .await
//! .expect("Failed to build embeddings.");
//!
//! // Use the generated embeddings
//! // ...
//! ```
use std::{cmp::max, collections::HashMap};
use futures::{stream, StreamExt, TryStreamExt};
use serde::{Deserialize, Serialize};
use crate::tool::{ToolEmbedding, ToolSet, ToolType};
#[derive(Debug, thiserror::Error)]
pub enum EmbeddingError {
/// Http error (e.g.: connection error, timeout, etc.)
#[error("HttpError: {0}")]
HttpError(#[from] reqwest::Error),
/// Json error (e.g.: serialization, deserialization)
#[error("JsonError: {0}")]
JsonError(#[from] serde_json::Error),
/// Error processing the document for embedding
#[error("DocumentError: {0}")]
DocumentError(String),
/// Error parsing the completion response
#[error("ResponseError: {0}")]
ResponseError(String),
/// Error returned by the embedding model provider
#[error("ProviderError: {0}")]
ProviderError(String),
}
/// Trait for embedding models that can generate embeddings for documents.
pub trait EmbeddingModel: Clone + Sync + Send {
/// The maximum number of documents that can be embedded in a single request.
const MAX_DOCUMENTS: usize;
/// The number of dimensions in the embedding vector.
fn ndims(&self) -> usize;
/// Embed a single document
fn embed_document(
&self,
document: &str,
) -> impl std::future::Future<Output = Result<Embedding, EmbeddingError>> + Send
where
Self: Sync,
{
async {
Ok(self
.embed_documents(vec![document.to_string()])
.await?
.first()
.cloned()
.expect("One embedding should be present"))
}
}
/// Embed multiple documents in a single request
fn embed_documents(
&self,
documents: impl IntoIterator<Item = String> + Send,
) -> impl std::future::Future<Output = Result<Vec<Embedding>, EmbeddingError>> + Send;
}
/// Struct that holds a single document and its embedding.
#[derive(Clone, Default, Deserialize, Serialize)]
pub struct Embedding {
/// The document that was embedded
pub document: String,
/// The embedding vector
pub vec: Vec<f64>,
}
impl PartialEq for Embedding {
fn eq(&self, other: &Self) -> bool {
self.document == other.document
}
}
impl Eq for Embedding {}
impl Embedding {
pub fn distance(&self, other: &Self) -> f64 {
let dot_product: f64 = self
.vec
.iter()
.zip(other.vec.iter())
.map(|(x, y)| x * y)
.sum();
let product_of_lengths = (self.vec.len() * other.vec.len()) as f64;
dot_product / product_of_lengths
}
}
/// Struct that holds a document and its embeddings.
///
/// The struct is designed to model any kind of documents that can be serialized to JSON
/// (including a simple string).
///
/// Moreover, it can hold multiple embeddings for the same document, thus allowing a
/// large document to be retrieved from a query that matches multiple smaller and
/// distinct text documents. For example, if the document is a textbook, a summary of
/// each chapter could serve as the book's embeddings.
#[derive(Clone, Eq, PartialEq, Serialize, Deserialize)]
pub struct DocumentEmbeddings {
#[serde(rename = "_id")]
pub id: String,
pub document: serde_json::Value,
pub embeddings: Vec<Embedding>,
}
type Embeddings = Vec<DocumentEmbeddings>;
/// Builder for creating a collection of embeddings
pub struct EmbeddingsBuilder<M: EmbeddingModel> {
model: M,
documents: Vec<(String, serde_json::Value, Vec<String>)>,
}
impl<M: EmbeddingModel> EmbeddingsBuilder<M> {
/// Create a new embedding builder with the given embedding model
pub fn new(model: M) -> Self {
Self {
model,
documents: vec![],
}
}
/// Add a simple document to the embedding collection.
/// The provided document string will be used for the embedding.
pub fn simple_document(mut self, id: &str, document: &str) -> Self {
self.documents.push((
id.to_string(),
serde_json::Value::String(document.to_string()),
vec![document.to_string()],
));
self
}
/// Add multiple documents to the embedding collection.
/// Each element of the vector is a tuple of the form (id, document).
pub fn simple_documents(mut self, documents: Vec<(String, String)>) -> Self {
self.documents
.extend(documents.into_iter().map(|(id, document)| {
(
id,
serde_json::Value::String(document.clone()),
vec![document],
)
}));
self
}
/// Add a tool to the embedding collection.
/// The `tool.context()` corresponds to the document being stored while
/// `tool.embedding_docs()` corresponds to the documents that will be used to generate the embeddings.
pub fn tool(mut self, tool: impl ToolEmbedding + 'static) -> Result<Self, EmbeddingError> {
self.documents.push((
tool.name(),
serde_json::to_value(tool.context())?,
tool.embedding_docs(),
));
Ok(self)
}
/// Add the tools from the given toolset to the embedding collection.
pub fn tools(mut self, toolset: &ToolSet) -> Result<Self, EmbeddingError> {
for (name, tool) in toolset.tools.iter() {
if let ToolType::Embedding(tool) = tool {
self.documents.push((
name.clone(),
tool.context().map_err(|e| {
EmbeddingError::DocumentError(format!(
"Failed to generate context for tool {}: {}",
name, e
))
})?,
tool.embedding_docs(),
));
}
}
Ok(self)
}
/// Add a document to the embedding collection.
/// `embed_documents` are the documents that will be used to generate the embeddings
/// for `document`.
pub fn document<T: Serialize>(
mut self,
id: &str,
document: T,
embed_documents: Vec<String>,
) -> Self {
self.documents.push((
id.to_string(),
serde_json::to_value(document).expect("Document should serialize"),
embed_documents,
));
self
}
/// Add multiple documents to the embedding collection.
/// Each element of the vector is a tuple of the form (id, document, embed_documents).
pub fn documents<T: Serialize>(mut self, documents: Vec<(String, T, Vec<String>)>) -> Self {
self.documents.extend(
documents
.into_iter()
.map(|(id, document, embed_documents)| {
(
id,
serde_json::to_value(document).expect("Document should serialize"),
embed_documents,
)
}),
);
self
}
/// Add a json document to the embedding collection.
pub fn json_document(
mut self,
id: &str,
document: serde_json::Value,
embed_documents: Vec<String>,
) -> Self {
self.documents
.push((id.to_string(), document, embed_documents));
self
}
/// Add multiple json documents to the embedding collection.
pub fn json_documents(
mut self,
documents: Vec<(String, serde_json::Value, Vec<String>)>,
) -> Self {
self.documents.extend(documents);
self
}
/// Generate the embeddings for the given documents
pub async fn build(self) -> Result<Embeddings, EmbeddingError> {
// Create a temporary store for the documents
let documents_map = self
.documents
.into_iter()
.map(|(id, document, docs)| (id, (document, docs)))
.collect::<HashMap<_, _>>();
let embeddings = stream::iter(documents_map.iter())
// Flatten the documents
.flat_map(|(id, (_, docs))| {
stream::iter(docs.iter().map(|doc| (id.clone(), doc.clone())))
})
// Chunk them into N (the emebdding API limit per request)
.chunks(M::MAX_DOCUMENTS)
// Generate the embeddings
.map(|docs| async {
let (ids, docs): (Vec<_>, Vec<_>) = docs.into_iter().unzip();
Ok::<_, EmbeddingError>(
ids.into_iter()
.zip(self.model.embed_documents(docs).await?.into_iter())
.collect::<Vec<_>>(),
)
})
.boxed()
// Parallelize the embeddings generation over 10 concurrent requests
.buffer_unordered(max(1, 1024 / M::MAX_DOCUMENTS))
.try_fold(vec![], |mut acc, mut embeddings| async move {
Ok({
acc.append(&mut embeddings);
acc
})
})
.await?;
// Assemble the DocumentEmbeddings
let mut document_embeddings: HashMap<String, DocumentEmbeddings> = HashMap::new();
embeddings.into_iter().for_each(|(id, embedding)| {
let (document, _) = documents_map.get(&id).expect("Document not found");
let document_embedding =
document_embeddings
.entry(id.clone())
.or_insert_with(|| DocumentEmbeddings {
id: id.clone(),
document: document.clone(),
embeddings: vec![],
});
document_embedding.embeddings.push(embedding);
});
Ok(document_embeddings.into_values().collect())
}
}