UNPKG

gepa-spo

Version:

Genetic-Pareto prompt optimizer to evolve system prompts from a few rollouts with modular support and intelligent crossover

4 lines (3 loc) 208 B
import type { Candidate } from './types.js'; /** Pareto-based candidate selection (Algorithm-2 style). Returns index k in P. */ export declare function selectCandidate(P: Candidate[], S: number[][]): number;