(self, token: int)
| 858 | return llama_cpp.llama_sampler_sample(self.sampler, ctx.ctx, idx) |
| 859 | |
| 860 | def accept(self, token: int): |
| 861 | llama_cpp.llama_sampler_accept(self.sampler, token) |
| 862 | |
| 863 | def reset(self): |
| 864 | llama_cpp.llama_sampler_reset(self.sampler) |
nothing calls this directly
no outgoing calls
no test coverage detected