(mut self, prompt: impl Into<String>)
| 356 | /// Set the user prompt. |
| 357 | #[must_use] |
| 358 | pub fn with_prompt(mut self, prompt: impl Into<String>) -> Self { |
| 359 | self.prompt = Some(prompt.into()); |
| 360 | self |
| 361 | } |
| 362 | |
| 363 | /// Set the tool name. |
| 364 | #[must_use] |
no outgoing calls