(self, ctx_main: LlamaContext, n: int)
| 624 | return None |
| 625 | |
| 626 | def prev_str(self, ctx_main: LlamaContext, n: int) -> str: |
| 627 | return ctx_main.model.detokenize(self.prev[-n:]).decode("utf-8") |
| 628 | |
| 629 | def sample( |
| 630 | self, |
nothing calls this directly
no test coverage detected