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