Override the preset step budget.
(mut self, max_steps: usize)
| 350 | |
| 351 | /// Override the preset step budget. |
| 352 | pub fn with_max_steps(mut self, max_steps: usize) -> Self { |
| 353 | self.max_steps = Some(max_steps); |
| 354 | self |
| 355 | } |
| 356 | |
| 357 | /// Set confirmation inheritance policy for child runs. |
| 358 | pub fn with_confirmation(mut self, inheritance: ConfirmationInheritance) -> Self { |
no outgoing calls