Current section

Files

Jump to
liter_llm lib liter_llm tool_call.ex
Raw

lib/liter_llm/tool_call.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:b34f5dac0a6af082b71cab3b75e126050fd38402a73d6d3ff06130b6fe7d8875
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.ToolCall do
@moduledoc "A tool call the model wants to execute."
@typedoc "A tool call the model wants to execute."
@type t :: %__MODULE__{
id: String.t() | nil,
call_type: String.t() | nil,
function: LiterLlm.FunctionCall.t()
}
defstruct id: nil,
call_type: :function,
function: nil
end