(self)
| 210 | } |
| 211 | |
| 212 | fn default_prompt(self) -> Option<&'static str> { |
| 213 | match self { |
| 214 | Self::ReadOnly => Some(EXPLORE_PROMPT), |
| 215 | Self::Planner => Some(PLAN_PROMPT), |
| 216 | Self::Verifier => Some(VERIFICATION_PROMPT), |
| 217 | Self::Reviewer => Some(REVIEW_PROMPT), |
| 218 | Self::Implementer | Self::Custom => None, |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | fn default_max_steps(self) -> usize { |
| 223 | match self { |
no outgoing calls
no test coverage detected