Current section

Files

Jump to
liter_llm lib liter_llm rerank_response.ex
Raw

lib/liter_llm/rerank_response.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:0c694843abf5c6a9fc8b410dfa73aea7c94ee538a40dc746dd72c50e7c986f97
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.RerankResponse do
@moduledoc "Response from the rerank endpoint."
@typedoc "Response from the rerank endpoint."
@type t :: %__MODULE__{
id: String.t() | nil,
results: [map()],
meta: String.t() | nil
}
defstruct id: nil,
results: [],
meta: nil
end