Set temperature
(mut self, temperature: f32)
| 74 | |
| 75 | /// Set temperature |
| 76 | pub fn with_temperature(mut self, temperature: f32) -> Self { |
| 77 | self.temperature = Some(temperature); |
| 78 | self |
| 79 | } |
| 80 | |
| 81 | /// Set agent ID explicitly |
| 82 | pub fn with_id(mut self, id: AgentId) -> Self { |
no outgoing calls