(
&self,
collection: &str,
query: &[f32],
k: usize,
filter: Option<&MetadataFilter>,
_allowed_ids: Option<&std::collections::HashSet<String>>,
)
| 27 | #[cfg_attr(target_arch = "wasm32", async_trait(?Send))] |
| 28 | impl NodeDb for NodeDbRemote { |
| 29 | async fn vector_search( |
| 30 | &self, |
| 31 | collection: &str, |
| 32 | query: &[f32], |
| 33 | k: usize, |
| 34 | filter: Option<&MetadataFilter>, |
| 35 | _allowed_ids: Option<&std::collections::HashSet<String>>, |
| 36 | ) -> NodeDbResult<Vec<SearchResult>> { |
| 37 | self.vector_search_impl(collection, query, k, filter).await |
| 38 | } |
| 39 | |
| 40 | async fn vector_insert_field( |
| 41 | &self, |
nothing calls this directly
no test coverage detected