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:5528d5d40f0aa94864b45d1800e50930265ad49915a23cb1e0b866011c733ba1
# 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