461bf6fd40
CI / lint (3.11) (push) Has been cancelled
CI / lint (3.12) (push) Has been cancelled
CI / lint (3.13) (push) Has been cancelled
CI / shellcheck (push) Has been cancelled
CI / shfmt (push) Has been cancelled
CI / setup (3.11) (push) Has been cancelled
CI / setup (3.12) (push) Has been cancelled
CI / setup (3.13) (push) Has been cancelled
CI / check-licenses (3.12) (push) Has been cancelled
CI / test_unit (3.11) (push) Has been cancelled
CI / test_unit (3.12) (push) Has been cancelled
CI / test_unit (3.13) (push) Has been cancelled
CI / test_unit_no_extras (3.11) (push) Has been cancelled
CI / test_unit_no_extras (3.12) (push) Has been cancelled
CI / test_json_to_html (3.12) (push) Has been cancelled
CI / test_unit_no_extras (3.13) (push) Has been cancelled
CI / test_unit_dependency_extras (csv, 3.12, --extra csv) (push) Has been cancelled
CI / test_unit_dependency_extras (xlsx, 3.11, --extra xlsx) (push) Has been cancelled
CI / test_unit_dependency_extras (xlsx, 3.12, --extra xlsx) (push) Has been cancelled
CI / test_unit_dependency_extras (csv, 3.11, --extra csv) (push) Has been cancelled
CI / test_unit_dependency_extras (csv, 3.13, --extra csv) (push) Has been cancelled
CI / test_unit_dependency_extras (docx, 3.11, --extra docx) (push) Has been cancelled
CI / test_unit_dependency_extras (docx, 3.12, --extra docx) (push) Has been cancelled
CI / test_unit_dependency_extras (docx, 3.13, --extra docx) (push) Has been cancelled
CI / test_unit_dependency_extras (markdown, 3.11, --extra md) (push) Has been cancelled
CI / test_unit_dependency_extras (markdown, 3.12, --extra md) (push) Has been cancelled
CI / test_unit_dependency_extras (markdown, 3.13, --extra md) (push) Has been cancelled
CI / test_unit_dependency_extras (odt, 3.11, --extra odt) (push) Has been cancelled
CI / test_unit_dependency_extras (odt, 3.12, --extra odt) (push) Has been cancelled
CI / test_unit_dependency_extras (odt, 3.13, --extra odt) (push) Has been cancelled
CI / test_unit_dependency_extras (pdf-image, 3.11, --extra pdf --extra image --extra paddleocr) (push) Has been cancelled
CI / test_unit_dependency_extras (pdf-image, 3.12, --extra pdf --extra image --extra paddleocr) (push) Has been cancelled
CI / test_unit_dependency_extras (pdf-image, 3.13, --extra pdf --extra image --extra paddleocr) (push) Has been cancelled
CI / test_unit_dependency_extras (pptx, 3.11, --extra pptx) (push) Has been cancelled
CI / test_unit_dependency_extras (pptx, 3.12, --extra pptx) (push) Has been cancelled
CI / test_unit_dependency_extras (pptx, 3.13, --extra pptx) (push) Has been cancelled
CI / test_unit_dependency_extras (pypandoc, 3.11, --extra epub --extra org --extra rtf --extra rst) (push) Has been cancelled
CI / test_unit_dependency_extras (pypandoc, 3.12, --extra epub --extra org --extra rtf --extra rst) (push) Has been cancelled
CI / test_unit_dependency_extras (pypandoc, 3.13, --extra epub --extra org --extra rtf --extra rst) (push) Has been cancelled
Build And Push Docker Image / set-short-sha (push) Has been cancelled
Partition Benchmark / setup (push) Has been cancelled
Partition Benchmark / Measure and compare partition() runtime (push) Has been cancelled
CI / test_unit_dependency_extras (xlsx, 3.13, --extra xlsx) (push) Has been cancelled
CI / test_ingest_src (3.12) (push) Has been cancelled
CI / test_json_to_markdown (3.12) (push) Has been cancelled
CI / changelog (push) Has been cancelled
CI / test_dockerfile (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Build And Push Docker Image / build-images (linux/amd64, opensource-linux-8core) (push) Has been cancelled
Build And Push Docker Image / build-images (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Build And Push Docker Image / publish-images (push) Has been cancelled
125 lines
5.9 KiB
Python
125 lines
5.9 KiB
Python
"""Implementation of baseline chunking.
|
|
|
|
This is the "plain-vanilla" chunking strategy. All the fundamental chunking behaviors are present in
|
|
this strategy and also in all other strategies. Those are:
|
|
|
|
- Maximally fill each chunk with sequential elements.
|
|
- Isolate oversized elements and divide (only) those chunks by text-splitting.
|
|
- Overlap when requested.
|
|
|
|
"Fancier" strategies add higher-level semantic-unit boundaries to be respected. For example, in the
|
|
by-title strategy, section boundaries are respected, meaning a chunk never contains text from two
|
|
different sections. When a new section is detected the current chunk is closed and a new one
|
|
started.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Iterable, Optional
|
|
|
|
from unstructured.chunking.base import ChunkingOptions, PreChunker
|
|
from unstructured.documents.elements import Element
|
|
|
|
|
|
def chunk_elements(
|
|
elements: Iterable[Element],
|
|
*,
|
|
include_orig_elements: Optional[bool] = None,
|
|
max_characters: Optional[int] = None,
|
|
max_tokens: Optional[int] = None,
|
|
new_after_n_chars: Optional[int] = None,
|
|
new_after_n_tokens: Optional[int] = None,
|
|
overlap: Optional[int] = None,
|
|
overlap_all: Optional[bool] = None,
|
|
tokenizer: Optional[str] = None,
|
|
repeat_table_headers: Optional[bool] = None,
|
|
skip_table_chunking: Optional[bool] = None,
|
|
isolate_table: Optional[bool] = None,
|
|
) -> list[Element]:
|
|
"""Combine sequential `elements` into chunks, respecting specified text-length limits.
|
|
|
|
Produces a sequence of `CompositeElement`, `Table`, and `TableChunk` elements (chunks).
|
|
|
|
Parameters
|
|
----------
|
|
elements
|
|
A list of unstructured elements. Usually the output of a partition function.
|
|
include_orig_elements
|
|
When `True` (default), add elements from pre-chunk to the `.metadata.orig_elements` field
|
|
of the chunk(s) formed from that pre-chunk. Among other things, this allows access to
|
|
original-element metadata that cannot be consolidated and is dropped in the course of
|
|
chunking.
|
|
max_characters
|
|
Hard maximum chunk length. No chunk will exceed this length. A single element that exceeds
|
|
this length will be divided into two or more chunks using text-splitting. Mutually
|
|
exclusive with `max_tokens`.
|
|
max_tokens
|
|
Hard maximum chunk token count. No chunk will exceed this token count. Requires `tokenizer`
|
|
to be specified. Mutually exclusive with `max_characters`.
|
|
new_after_n_chars
|
|
A chunk that of this length or greater is not extended to include the next element, even if
|
|
that element would fit without exceeding `max_characters`. A "soft max" length that can be
|
|
used in conjunction with `max_characters` to limit most chunks to a preferred length while
|
|
still allowing larger elements to be included in a single chunk without resorting to
|
|
text-splitting. Defaults to `max_characters` when not specified, which effectively disables
|
|
any soft window. Specifying 0 for this argument causes each element to appear in a chunk by
|
|
itself (although an element with text longer than `max_characters` will be still be split
|
|
into two or more chunks).
|
|
new_after_n_tokens
|
|
Token-based equivalent of `new_after_n_chars`. A chunk with this token count or greater is
|
|
not extended. Requires `max_tokens` and `tokenizer` to be specified.
|
|
overlap
|
|
Specifies the length of a string ("tail") to be drawn from each chunk and prefixed to the
|
|
next chunk as a context-preserving mechanism. By default, this only applies to split-chunks
|
|
where an oversized element is divided into multiple chunks by text-splitting.
|
|
overlap_all
|
|
Default: `False`. When `True`, apply overlap between "normal" chunks formed from whole
|
|
elements and not subject to text-splitting. Use this with caution as it produces a certain
|
|
level of "pollution" of otherwise clean semantic chunk boundaries.
|
|
tokenizer
|
|
The tokenizer to use for token-based chunking. Can be either an encoding name (e.g.,
|
|
"cl100k_base") or a model name (e.g., "gpt-4"). Required when using `max_tokens`.
|
|
repeat_table_headers
|
|
Default: `True`. When `True`, repeated table-header behavior is enabled for chunked table
|
|
continuations. Specify `False` to opt out and preserve legacy table-chunk behavior.
|
|
skip_table_chunking
|
|
Default: `False`. When `True`, `Table` elements are passed through unchanged without
|
|
being split into `TableChunk` elements, regardless of their size.
|
|
isolate_table
|
|
Default: `True`. When `True`, `Table` and `TableChunk` elements are always staged in
|
|
their own pre-chunk and never combined with adjacent non-table elements. Specify
|
|
`False` to allow tables to share pre-chunks with adjacent elements (the pre-#4307
|
|
behavior).
|
|
"""
|
|
# -- raises ValueError on invalid parameters --
|
|
opts = _BasicChunkingOptions.new(
|
|
include_orig_elements=include_orig_elements,
|
|
max_characters=max_characters,
|
|
max_tokens=max_tokens,
|
|
new_after_n_chars=new_after_n_chars,
|
|
new_after_n_tokens=new_after_n_tokens,
|
|
overlap=overlap,
|
|
overlap_all=overlap_all,
|
|
tokenizer=tokenizer,
|
|
repeat_table_headers=repeat_table_headers,
|
|
skip_table_chunking=skip_table_chunking,
|
|
isolate_table=isolate_table,
|
|
)
|
|
|
|
return _chunk_elements(elements, opts)
|
|
|
|
|
|
def _chunk_elements(elements: Iterable[Element], opts: _BasicChunkingOptions) -> list[Element]:
|
|
"""Implementation of actual basic chunking."""
|
|
# -- Note(scanny): it might seem like over-abstraction for this to be a separate function but
|
|
# -- it eases overriding or adding individual chunking options when customizing a stock chunker.
|
|
return [
|
|
chunk
|
|
for pre_chunk in PreChunker.iter_pre_chunks(elements, opts)
|
|
for chunk in pre_chunk.iter_chunks()
|
|
]
|
|
|
|
|
|
class _BasicChunkingOptions(ChunkingOptions):
|
|
"""Options for `basic` chunking."""
|