Current section

Files

Jump to
liter_llm lib liter_llm tool_choice.ex
Raw

lib/liter_llm/tool_choice.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.ToolChoice do
@moduledoc "Tool usage mode or a specific tool to call."
@typedoc "Tool usage mode or a specific tool to call."
@type t :: term()
@typedoc "Predefined mode: auto, required, or none."
@type mode :: %{type: :mode, value: map()}
@typedoc "Force a specific tool to be called."
@type specific :: %{type: :specific, tool_choice: LiterLlm.SpecificToolChoice.t()}
end