Current section

Files

Jump to
liter_llm lib liter_llm function_call.ex
Raw

lib/liter_llm/function_call.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:645d8ff0f3a0ef7684f9b9ea4ce1ae251a78a2a3481ecdeabf7643c53d644bb0
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.FunctionCall do
@moduledoc "Function call details."
@typedoc "Function call details."
@type t :: %__MODULE__{
name: String.t() | nil,
arguments: String.t() | nil
}
defstruct name: nil,
arguments: nil
end