(self, k, rnd)
| 596 | return doc |
| 597 | |
| 598 | def fewshot_examples(self, k, rnd): |
| 599 | if self._training_docs is None: |
| 600 | self._training_docs = list(self.training_docs()) |
| 601 | |
| 602 | return rnd.sample(self._training_docs, k) |
| 603 | |
| 604 | def doc_to_decontamination_query(self, doc): |
| 605 | print( |
no test coverage detected