Builder: set the AI model.
(mut self, model: impl Into<String>)
| 357 | |
| 358 | /// Builder: set the AI model. |
| 359 | pub fn with_ai_model(mut self, model: impl Into<String>) -> Self { |
| 360 | self.ai_model = Some(model.into()); |
| 361 | self |
| 362 | } |
| 363 | |
| 364 | /// Builder: set the AI tool. |
| 365 | pub fn with_ai_tool(mut self, tool: impl Into<String>) -> Self { |
no outgoing calls