Ask the engine to return document search scores.
(self)
| 284 | return self |
| 285 | |
| 286 | def with_scores(self) -> "Query": |
| 287 | """Ask the engine to return document search scores.""" |
| 288 | self._with_scores = True |
| 289 | return self |
| 290 | |
| 291 | def limit_fields(self, *fields: str) -> "Query": |
| 292 | """ |
no outgoing calls