-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathvector_store_sqlite_vss.rs
80 lines (69 loc) · 2.64 KB
/
vector_store_sqlite_vss.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
// To run this example execute: cargo run --example vector_store_sqlite_vss --features sqlite-vss
// Make sure vector0 and vss0 libraries are installed in the system or the path of the executable.
// Download the libraries from https://github.com/asg017/sqlite-vss
// For static compilation of sqlite-vss extension refer to the following link:
// https://github.com/launchbadge/sqlx/issues/3147.
#[cfg(feature = "sqlite-vss")]
use langchain_rust::{
embedding::openai::openai_embedder::OpenAiEmbedder,
schemas::Document,
vectorstore::{sqlite_vss::StoreBuilder, VecStoreOptions, VectorStore},
};
#[cfg(feature = "sqlite-vss")]
use std::io::Write;
#[cfg(feature = "sqlite-vss")]
#[tokio::main]
async fn main() {
// Initialize Embedder
let embedder = OpenAiEmbedder::default();
let database_url = std::env::var("DATABASE_URL").unwrap_or("sqlite::memory:".to_string());
// Initialize the Sqlite Vector Store
let store = StoreBuilder::new()
.embedder(embedder)
.connection_url(database_url)
.table("documents")
.vector_dimensions(1536)
.build()
.await
.unwrap();
// Initialize the tables in the database. This is required to be done only once.
store.initialize().await.unwrap();
// Add documents to the database
let doc1 = Document::new(
"langchain-rust is a port of the langchain python library to rust and was written in 2024.",
);
let doc2 = Document::new(
"langchaingo is a port of the langchain python library to go language and was written in 2023."
);
let doc3 = Document::new(
"Capital of United States of America (USA) is Washington D.C. and the capital of France is Paris."
);
let doc4 = Document::new("Capital of France is Paris.");
store
.add_documents(&vec![doc1, doc2, doc3, doc4], &VecStoreOptions::default())
.await
.unwrap();
// Ask for user input
print!("Query> ");
std::io::stdout().flush().unwrap();
let mut query = String::new();
std::io::stdin().read_line(&mut query).unwrap();
let results = store
.similarity_search(&query, 2, &VecStoreOptions::default())
.await
.unwrap();
if results.is_empty() {
println!("No results found.");
return;
} else {
results.iter().for_each(|r| {
println!("Document: {}", r.page_content);
});
}
}
#[cfg(not(feature = "sqlite-vss"))]
fn main() {
println!("This example requires the 'sqlite-vss' feature to be enabled.");
println!("Please run the command as follows:");
println!("cargo run --example vector_store_sqlite_vss --features sqlite-vss");
}