(self, text: str, add_special_tokens: bool = False)
| 40 | |
| 41 | class FakeTokenizer: |
| 42 | def encode(self, text: str, add_special_tokens: bool = False): |
| 43 | return [] |
| 44 | |
| 45 | |
| 46 | def send_one_batch(base_url, max_concurrency, input_requests, disable_tqdm): |
no outgoing calls
no test coverage detected