(mut self, path: impl Into<PathBuf>)
| 147 | /// Set the path to the claude CLI executable. |
| 148 | #[must_use] |
| 149 | pub fn with_claude_path(mut self, path: impl Into<PathBuf>) -> Self { |
| 150 | self.claude_path = Some(path.into()); |
| 151 | self |
| 152 | } |
| 153 | |
| 154 | /// Set the model to use. |
| 155 | #[must_use] |
no outgoing calls