(mut self, temperature: f32)
| 483 | } |
| 484 | |
| 485 | pub fn with_temperature(mut self, temperature: f32) -> Self { |
| 486 | self.temperature = Some(temperature); |
| 487 | self |
| 488 | } |
| 489 | |
| 490 | pub fn with_thinking_budget(mut self, budget: usize) -> Self { |
| 491 | self.thinking_budget = Some(budget); |
no outgoing calls
no test coverage detected