Builder: set the AI provider.
(mut self, provider: impl Into<String>)
| 351 | |
| 352 | /// Builder: set the AI provider. |
| 353 | pub fn with_ai_provider(mut self, provider: impl Into<String>) -> Self { |
| 354 | self.ai_provider = Some(provider.into()); |
| 355 | self |
| 356 | } |
| 357 | |
| 358 | /// Builder: set the AI model. |
| 359 | pub fn with_ai_model(mut self, model: impl Into<String>) -> Self { |
no outgoing calls