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:07562382b502a5b7ab1c75b472a27ccfc096d0dfe06c87c012ca58af37b50df9
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/sample_crate-dev/alef
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