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:797e09398ae0b95dd0e3de94d7374eedafcd20d08532c7cf378cbcd09e3083a7
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
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