lib/council_ex/profiles/openai_deterministic.ex
defmodule CouncilEx.Profiles.OpenAIDeterministic do
@moduledoc """
Prebaked profile: OpenAI `gpt-4o` with `temperature: 0.0` for
reproducible / judging-style work.
"""
use CouncilEx.Profile
provider(:openai)
model("gpt-4o")
temperature(0.0)
end