(self, k, rnd)
| 329 | return self._instances |
| 330 | |
| 331 | def fewshot_examples(self, k, rnd): |
| 332 | if self._training_docs is None: |
| 333 | self._training_docs = list(self.training_docs()) |
| 334 | |
| 335 | return rnd.sample(self._training_docs, k) |
| 336 | |
| 337 | def doc_to_decontamination_query(self, doc) -> None: |
| 338 | print( |
no test coverage detected