Get the effective claude CLI path.
(&self)
| 167 | |
| 168 | /// Get the effective claude CLI path. |
| 169 | pub(crate) fn claude_path(&self) -> &str { |
| 170 | self.claude_path |
| 171 | .as_ref() |
| 172 | .and_then(|p| p.to_str()) |
| 173 | .unwrap_or("claude") |
| 174 | } |
| 175 | |
| 176 | /// Get the effective model name. |
| 177 | pub(crate) fn model(&self) -> &str { |
no test coverage detected