(self)
| 729 | score: float |
| 730 | |
| 731 | def __repr__(self): |
| 732 | return f"<Handle {repr(get_tokenizer().detokenize(self.tokens))}, score={self.score}>" |
| 733 | |
| 734 | def is_finished(self): |
| 735 | return len(self.tokens) and self.tokens[-1] == get_tokenizer().eod |
nothing calls this directly
no test coverage detected