Packages

Elixir implementation of the GEPA (Genetic-Pareto) optimizer that combines LLM-powered reflection with Pareto search to evolve text-based system components.

Current section

Files

Jump to
gepa_ex lib gepa_ex.ex
Raw

lib/gepa_ex.ex

defmodule GepaEx do
@moduledoc """
Documentation for `GepaEx`.
"""
@doc """
Hello world.
## Examples
iex> GepaEx.hello()
:world
"""
@spec hello() :: :world
def hello do
:world
end
end