Current section

Files

Jump to
liter_llm lib liter_llm rerank_result_document.ex
Raw

lib/liter_llm/rerank_result_document.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:fec9b44a56d9714b7b12931bb48e1e8f6d57ef2d0ccaad1f9ac6046ce01a89af
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.RerankResultDocument do
@moduledoc "The text content of a reranked document, returned when `return_documents` is true."
@typedoc "The text content of a reranked document, returned when `return_documents` is true."
@type t :: %__MODULE__{
text: String.t() | nil
}
defstruct text: nil
end