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