(text: string)
| 30 | |
| 31 | /** Tokenize + stem — the recall ranker's semantic-lexical vocabulary. PURE. */ |
| 32 | export function semanticTokens(text: string): string[] { |
| 33 | return tokenize(text).map(stem); |
| 34 | } |
| 35 | |
| 36 | export interface ApproachSource { |
| 37 | kind: 'episode' | 'worklog' | 'fact' | 'receipt'; |
no test coverage detected