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:561e842050a4e0df6de070b0fde43848f2789ddf3578ad6a364633032c565b61
# 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