(self, k, rnd)
| 86 | return "" |
| 87 | |
| 88 | def fewshot_examples(self, k, rnd): |
| 89 | assert ( |
| 90 | k == 0 |
| 91 | ), f"CBT is only implemented for the zero-shot setting. Given k={k}." |
| 92 | return super().fewshot_examples(k, rnd) |
| 93 | |
| 94 | def construct_requests(self, doc, ctx): |
| 95 | """Uses RequestFactory to construct Requests and returns an iterable of |
no outgoing calls
no test coverage detected