Takes in a list of queries with embeddings and filters and returns a list of query results with matching document chunks and scores.
(self, queries: List[QueryWithEmbedding])
| 66 | |
| 67 | @abstractmethod |
| 68 | async def _query(self, queries: List[QueryWithEmbedding]) -> List[QueryResult]: |
| 69 | """ |
| 70 | Takes in a list of queries with embeddings and filters and returns a list of query results with matching document chunks and scores. |
| 71 | """ |
| 72 | raise NotImplementedError |
| 73 | |
| 74 | @abstractmethod |
| 75 | async def delete( |
no outgoing calls