Current section

Files

Jump to
liter_llm lib liter_llm reasoning_effort.ex
Raw

lib/liter_llm/reasoning_effort.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:b159ec7bf40f2249b9f5696d5819688bca2310a2b26cc9acae8194e6255f8b03
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.ReasoningEffort do
@moduledoc "Controls how much reasoning effort the model should use."
@typedoc "Controls how much reasoning effort the model should use."
@type t :: :low | :medium | :high
@low :low
@medium :medium
@high :high
@spec low() :: t()
def low, do: @low
@spec medium() :: t()
def medium, do: @medium
@spec high() :: t()
def high, do: @high
end