Set max tokens
(mut self, max_tokens: u32)
| 68 | |
| 69 | /// Set max tokens |
| 70 | pub fn with_max_tokens(mut self, max_tokens: u32) -> Self { |
| 71 | self.max_tokens = Some(max_tokens); |
| 72 | self |
| 73 | } |
| 74 | |
| 75 | /// Set temperature |
| 76 | pub fn with_temperature(mut self, temperature: f32) -> Self { |
no outgoing calls