| 30 | |
| 31 | #[derive(Debug, Serialize, Deserialize, PartialEq)] |
| 32 | pub struct BatchVectorANN { |
| 33 | pub vectors: Vec<Vec<f32>>, |
| 34 | pub filter: Option<Filter>, |
| 35 | pub nn_count: Option<usize>, |
| 36 | } |
| 37 | |
| 38 | #[derive(Debug, Serialize, Deserialize, PartialEq)] |
| 39 | pub struct FetchNeighbors { |
nothing calls this directly
no outgoing calls
no test coverage detected