(mut self, prompt: impl Into<String>)
| 348 | /// Set the user prompt. |
| 349 | #[must_use] |
| 350 | pub fn with_prompt(mut self, prompt: impl Into<String>) -> Self { |
| 351 | self.prompt = Some(prompt.into()); |
| 352 | self |
| 353 | } |
| 354 | |
| 355 | /// Set the tool name. |
| 356 | #[must_use] |
no outgoing calls