Skip to content

Commit

Permalink
fix: move lancedb fixtures into it's own file
Browse files Browse the repository at this point in the history
  • Loading branch information
marieaurore123 committed Oct 18, 2024
1 parent 3688b78 commit db8d188
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion rig-lancedb/examples/vector_search_local_ann.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use rig::{
};
use rig_lancedb::{LanceDbVectorStore, SearchParams};

#[path = "./fixtures/main.rs"]
#[path = "./fixtures.rs"]
mod fixture;

#[tokio::main]
Expand Down
2 changes: 1 addition & 1 deletion rig-lancedb/examples/vector_search_local_enn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use rig::{
};
use rig_lancedb::{LanceDbVectorStore, SearchParams};

#[path = "./fixtures/main.rs"]
#[path = "./fixtures.rs"]
mod fixture;

#[tokio::main]
Expand Down
2 changes: 1 addition & 1 deletion rig-lancedb/examples/vector_search_s3_ann.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use rig::{
};
use rig_lancedb::{LanceDbVectorStore, SearchParams};

#[path = "./fixtures/main.rs"]
#[path = "./fixtures.rs"]
mod fixture;

// Note: see docs to deploy LanceDB on other cloud providers such as google and azure.
Expand Down

0 comments on commit db8d188

Please sign in to comment.