(self, temp: float)
| 727 | llama_cpp.llama_sampler_chain_add(self.sampler, sampler) |
| 728 | |
| 729 | def add_temp(self, temp: float): |
| 730 | sampler = llama_cpp.llama_sampler_init_temp(temp) |
| 731 | llama_cpp.llama_sampler_chain_add(self.sampler, sampler) |
| 732 | |
| 733 | def add_temp_ext(self, t: float, delta: float, exponent: float): |
| 734 | sampler = llama_cpp.llama_sampler_init_temp_ext(t, delta, exponent) |
no outgoing calls