Override the preset prompt.
(mut self, prompt: impl Into<String>)
| 344 | |
| 345 | /// Override the preset prompt. |
| 346 | pub fn with_prompt(mut self, prompt: impl Into<String>) -> Self { |
| 347 | self.prompt = Some(prompt.into()); |
| 348 | self |
| 349 | } |
| 350 | |
| 351 | /// Override the preset step budget. |
| 352 | pub fn with_max_steps(mut self, max_steps: usize) -> Self { |
no outgoing calls