Globally enable or disable automatic parallel child-agent fan-out. Manual `parallel_task` calls remain available when this is false.
(mut self, enabled: bool)
| 539 | /// |
| 540 | /// Manual `parallel_task` calls remain available when this is false. |
| 541 | pub fn with_auto_parallel_delegation(mut self, enabled: bool) -> Self { |
| 542 | if let Some(config) = &mut self.auto_delegation { |
| 543 | config.auto_parallel = enabled; |
| 544 | } |
| 545 | self.auto_parallel_delegation = Some(enabled); |
| 546 | self |
| 547 | } |
| 548 | |
| 549 | /// Set slot-based system prompt customization for this session. |
| 550 | /// |
no outgoing calls