(self, seed: int)
| 700 | llama_cpp.llama_sampler_chain_add(self.sampler, sampler) |
| 701 | |
| 702 | def add_dist(self, seed: int): |
| 703 | sampler = llama_cpp.llama_sampler_init_dist(seed) |
| 704 | llama_cpp.llama_sampler_chain_add(self.sampler, sampler) |
| 705 | |
| 706 | def add_softmax(self): |
| 707 | warnings.warn( |
no outgoing calls