Current section

Files

Jump to
liter_llm lib liter_llm function_definition.ex
Raw

lib/liter_llm/function_definition.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:f2be24356f224d7cafb965a88977ab27840a65ecb9a9ba6cce1110d593455279
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/sample_crate-dev/alef
defmodule LiterLlm.FunctionDefinition do
@moduledoc "Function definition exposed to the model."
@typedoc "Function definition exposed to the model."
@type t :: %__MODULE__{
name: String.t() | nil,
description: String.t() | nil,
parameters: String.t() | nil,
strict: boolean() | nil
}
defstruct name: nil,
description: nil,
parameters: nil,
strict: nil
end