gepa 0.1.0

GEPA: Reflective Prompt Evolution — a Rust implementation of the genetic-Pareto prompt optimizer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Proposer subsystem for the GEPA optimisation engine.
///
/// Proposers generate new candidate programs from the current state.
/// The engine drives concrete proposers via their `propose_mut` methods.
pub mod base;
pub mod merge;
pub mod reflective_mutation;

// ---------------------------------------------------------------------------
// Flat re-exports
// ---------------------------------------------------------------------------

pub use base::CandidateProposal;
pub use merge::MergeProposer;
pub use reflective_mutation::ReflectiveMutationProposer;