(mut self, temperature: f32)
| 100 | } |
| 101 | |
| 102 | pub fn with_temperature(mut self, temperature: f32) -> Self { |
| 103 | self.temperature = Some(temperature); |
| 104 | self |
| 105 | } |
| 106 | |
| 107 | pub fn with_max_tokens(mut self, max_tokens: usize) -> Self { |
| 108 | self.max_tokens = Some(max_tokens); |
no outgoing calls
no test coverage detected