(ctx context.Context, prompt string, candidates []string)
| 45 | // for multi-label policy selection. |
| 46 | type Scorer interface { |
| 47 | Score(ctx context.Context, prompt string, candidates []string) ([]CandidateScore, error) |
| 48 | } |
| 49 | |
| 50 | // NewScorer binds (loader, modelConfig, appConfig) into a Scorer. The |
no outgoing calls
no test coverage detected