# This file is auto-generated by alef — DO NOT EDIT. # alef:hash:52effca2513e1c5f8a9a5b90a372d645388de4b92e4f822acc38d97502c322b6 # 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