Current section
Files
Jump to
Current section
Files
lib/xberg/document_summary.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:86e3b491373cb06a224074d5c175e5bf4c341443fbe2e0370128e5b090afde61
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.DocumentSummary do
@moduledoc "Summary of an extracted document."
@typedoc "Summary of an extracted document."
@type t :: %__MODULE__{
text: String.t() | nil,
strategy: String.t() | nil,
token_count: non_neg_integer() | nil
}
defstruct text: nil,
strategy: :extractive,
token_count: nil
end