Builder: set the AI-assisted flag.
(mut self, ai_assisted: bool)
| 337 | |
| 338 | /// Builder: set the AI-assisted flag. |
| 339 | pub fn with_ai_assisted(mut self, ai_assisted: bool) -> Self { |
| 340 | self.ai_assisted = ai_assisted; |
| 341 | self |
| 342 | } |
| 343 | |
| 344 | /// Builder: set the AI provider. |
| 345 | pub fn with_ai_provider(mut self, provider: impl Into<String>) -> Self { |
no outgoing calls