(self, hits: list[VectorHit] | None = None)
| 68 | """Returns canned hits; records calls for assertions.""" |
| 69 | |
| 70 | def __init__(self, hits: list[VectorHit] | None = None): |
| 71 | self.hits = hits if hits is not None else list(SAMPLE_HITS) |
| 72 | self.last_query_args: dict | None = None |
| 73 | |
| 74 | def query(self, vector, vector_filter, top_k): |
| 75 | self.last_query_args = { |
nothing calls this directly
no outgoing calls
no test coverage detected