(
&self,
collection: &str,
id: &str,
embedding: &[f32],
metadata: Option<Document>,
)
| 64 | } |
| 65 | |
| 66 | async fn vector_insert( |
| 67 | &self, |
| 68 | collection: &str, |
| 69 | id: &str, |
| 70 | embedding: &[f32], |
| 71 | metadata: Option<Document>, |
| 72 | ) -> NodeDbResult<()> { |
| 73 | self.vector_insert_impl(collection, id, embedding, metadata) |
| 74 | .await |
| 75 | } |
| 76 | |
| 77 | async fn vector_delete(&self, collection: &str, id: &str) -> NodeDbResult<()> { |
| 78 | self.vector_delete_impl(collection, id).await |
nothing calls this directly
no test coverage detected