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:4685b97575f1ddb0a83554a97b65aa5936283420ed37f567b82618c4e3de7d0d
# 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