(mut self, prompt: impl Into<String>)
| 402 | } |
| 403 | |
| 404 | pub fn with_system_prompt(mut self, prompt: impl Into<String>) -> Self { |
| 405 | self.system_prompt = Some(prompt.into()); |
| 406 | self |
| 407 | } |
| 408 | |
| 409 | pub fn with_temperature(mut self, temp: f32) -> Self { |
| 410 | self.temperature = Some(temp); |
no outgoing calls
no test coverage detected