(self)
| 852 | ) |
| 853 | |
| 854 | def get_seed(self) -> int: |
| 855 | return llama_cpp.llama_sampler_get_seed(self.sampler) |
| 856 | |
| 857 | def sample(self, ctx: LlamaContext, idx: int = -1) -> int: |
| 858 | return llama_cpp.llama_sampler_sample(self.sampler, ctx.ctx, idx) |
nothing calls this directly
no outgoing calls
no test coverage detected