(input)
| 192 | candidates: [], |
| 193 | confidence: 'high', |
| 194 | alternatives: alternativesFor(input, []), |
| 195 | verification: tier0.verification, |
| 196 | dimensions: classifyComplexity(input, []), |
| 197 | capability: tier0.capability, |
| 198 | }; |
| 199 | } |
| 200 | |
| 201 | const matches = keywordMatches(input); |
| 202 | const dimensions = classifyComplexity(input, matches); |
| 203 | if (matches.length === 1) { |
| 204 | const selected = matches[0].route; |
| 205 | const reason = `one keyword group produced ${matches[0].route} as a candidate: ${matches[0].matches.join(', ')}.`; |
no test coverage detected