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 application.ex
Raw

lib/gepa/application.ex

defmodule GEPA.Application do
@moduledoc false
use Application
@impl true
@spec start(Application.start_type(), term()) ::
{:ok, pid()} | {:error, {:already_started, pid()} | term()}
def start(_type, _args) do
children = [
# Task supervisor for parallel evaluation
{Task.Supervisor, name: GEPA.TaskSupervisor}
]
opts = [strategy: :one_for_one, name: GEPA.Supervisor]
Supervisor.start_link(children, opts)
end
end