Builder: set the AI provider.
(mut self, provider: impl Into<String>)
| 343 | |
| 344 | /// Builder: set the AI provider. |
| 345 | pub fn with_ai_provider(mut self, provider: impl Into<String>) -> Self { |
| 346 | self.ai_provider = Some(provider.into()); |
| 347 | self |
| 348 | } |
| 349 | |
| 350 | /// Builder: set the AI model. |
| 351 | pub fn with_ai_model(mut self, model: impl Into<String>) -> Self { |
no outgoing calls