Builder: set the AI-assisted flag.
(mut self, ai_assisted: bool)
| 345 | |
| 346 | /// Builder: set the AI-assisted flag. |
| 347 | pub fn with_ai_assisted(mut self, ai_assisted: bool) -> Self { |
| 348 | self.ai_assisted = ai_assisted; |
| 349 | self |
| 350 | } |
| 351 | |
| 352 | /// Builder: set the AI provider. |
| 353 | pub fn with_ai_provider(mut self, provider: impl Into<String>) -> Self { |
no outgoing calls