Interfaces
EntryScorer
Interface: EntryScorer
Defined in: src/lib/injection-engine/entryScorer.ts:64
A strategy for ranking entry candidates. Pure given its inputs; may be async (an embedder makes network calls). Runs ONCE per turn off the hot loop, so cost here never touches the ReAct inner loop.
Properties
name
readonlyname:string
Defined in: src/lib/injection-engine/entryScorer.ts:67
Short, stable name — shown in the lens / "Why this skill?" panel + any strategy picker.
Methods
score()
score(
input,signal?):EntryScoring|Promise<EntryScoring>
Defined in: src/lib/injection-engine/entryScorer.ts:68
Parameters
input
signal?
AbortSignal
Returns
EntryScoring | Promise<EntryScoring>
