461bf6fd40
CI / lint (3.11) (push) Blocked by required conditions
CI / lint (3.12) (push) Blocked by required conditions
CI / lint (3.13) (push) Blocked by required conditions
CI / shellcheck (push) Waiting to run
CI / shfmt (push) Waiting to run
CI / setup (3.11) (push) Waiting to run
CI / setup (3.12) (push) Waiting to run
CI / setup (3.13) (push) Waiting to run
CI / check-licenses (3.12) (push) Blocked by required conditions
CI / test_unit (3.11) (push) Blocked by required conditions
CI / test_unit (3.12) (push) Blocked by required conditions
CI / test_unit (3.13) (push) Blocked by required conditions
CI / test_unit_no_extras (3.11) (push) Blocked by required conditions
CI / test_unit_no_extras (3.12) (push) Blocked by required conditions
CI / test_json_to_html (3.12) (push) Blocked by required conditions
CI / test_unit_no_extras (3.13) (push) Blocked by required conditions
CI / test_unit_dependency_extras (csv, 3.11, --extra csv) (push) Blocked by required conditions
CI / test_unit_dependency_extras (csv, 3.12, --extra csv) (push) Blocked by required conditions
CI / test_unit_dependency_extras (csv, 3.13, --extra csv) (push) Blocked by required conditions
CI / test_unit_dependency_extras (docx, 3.11, --extra docx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (docx, 3.12, --extra docx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (docx, 3.13, --extra docx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (markdown, 3.11, --extra md) (push) Blocked by required conditions
CI / test_unit_dependency_extras (markdown, 3.12, --extra md) (push) Blocked by required conditions
CI / test_unit_dependency_extras (markdown, 3.13, --extra md) (push) Blocked by required conditions
CI / test_unit_dependency_extras (odt, 3.11, --extra odt) (push) Blocked by required conditions
CI / test_unit_dependency_extras (odt, 3.12, --extra odt) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pdf-image, 3.12, --extra pdf --extra image --extra paddleocr) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pdf-image, 3.13, --extra pdf --extra image --extra paddleocr) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pptx, 3.13, --extra pptx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (odt, 3.13, --extra odt) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pdf-image, 3.11, --extra pdf --extra image --extra paddleocr) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pptx, 3.11, --extra pptx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pptx, 3.12, --extra pptx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pypandoc, 3.11, --extra epub --extra org --extra rtf --extra rst) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pypandoc, 3.12, --extra epub --extra org --extra rtf --extra rst) (push) Blocked by required conditions
CI / test_unit_dependency_extras (pypandoc, 3.13, --extra epub --extra org --extra rtf --extra rst) (push) Blocked by required conditions
CI / test_unit_dependency_extras (xlsx, 3.11, --extra xlsx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (xlsx, 3.12, --extra xlsx) (push) Blocked by required conditions
CI / test_unit_dependency_extras (xlsx, 3.13, --extra xlsx) (push) Blocked by required conditions
CI / test_ingest_src (3.12) (push) Blocked by required conditions
CI / test_json_to_markdown (3.12) (push) Blocked by required conditions
CI / changelog (push) Waiting to run
CI / test_dockerfile (push) Blocked by required conditions
CodeQL / Analyze (python) (push) Waiting to run
Build And Push Docker Image / set-short-sha (push) Waiting to run
Build And Push Docker Image / build-images (linux/amd64, opensource-linux-8core) (push) Blocked by required conditions
Build And Push Docker Image / build-images (linux/arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
Build And Push Docker Image / publish-images (push) Blocked by required conditions
Partition Benchmark / setup (push) Waiting to run
Partition Benchmark / Measure and compare partition() runtime (push) Blocked by required conditions
891 lines
32 KiB
Python
891 lines
32 KiB
Python
# pyright: reportPrivateUsage=false
|
|
|
|
"""Test suite for the `unstructured.chunking.title` module."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any, Optional
|
|
|
|
import pytest
|
|
|
|
from test_unstructured.unit_utils import FixtureRequest, Mock, function_mock, input_path
|
|
from unstructured.chunking.base import CHUNK_MULTI_PAGE_DEFAULT
|
|
from unstructured.chunking.title import _ByTitleChunkingOptions, chunk_by_title
|
|
from unstructured.documents.coordinates import CoordinateSystem
|
|
from unstructured.documents.elements import (
|
|
CheckBox,
|
|
CompositeElement,
|
|
CoordinatesMetadata,
|
|
Element,
|
|
ElementMetadata,
|
|
ListItem,
|
|
Table,
|
|
TableChunk,
|
|
Text,
|
|
Title,
|
|
)
|
|
from unstructured.partition.html import partition_html
|
|
from unstructured.staging.base import elements_from_json
|
|
|
|
# ================================================================================================
|
|
# INTEGRATION-TESTS
|
|
# ================================================================================================
|
|
# These test `chunk_by_title()` as an integrated whole, calling `chunk_by_title()` and inspecting
|
|
# the outputs.
|
|
# ================================================================================================
|
|
|
|
|
|
def test_it_chunks_text_followed_by_table_together_when_both_fit():
|
|
elements = elements_from_json(input_path("chunking/title_table_200.json"))
|
|
|
|
chunks = chunk_by_title(elements, combine_text_under_n_chars=0)
|
|
|
|
assert len(chunks) == 2
|
|
assert isinstance(chunks[0], CompositeElement)
|
|
assert isinstance(chunks[1], Table)
|
|
|
|
|
|
def test_it_chunks_table_followed_by_text_together_when_both_fit():
|
|
elements = elements_from_json(input_path("chunking/table_text_200.json"))
|
|
|
|
# -- disable chunk combining so we test pre-chunking behavior, not chunk-combining --
|
|
chunks = chunk_by_title(elements, combine_text_under_n_chars=0)
|
|
|
|
assert len(chunks) == 2
|
|
assert isinstance(chunks[0], Table)
|
|
assert isinstance(chunks[1], CompositeElement)
|
|
|
|
|
|
def test_it_splits_oversized_table():
|
|
elements = elements_from_json(input_path("chunking/table_2000.json"))
|
|
|
|
chunks = chunk_by_title(elements)
|
|
|
|
assert len(chunks) == 5
|
|
assert all(isinstance(chunk, TableChunk) for chunk in chunks)
|
|
|
|
|
|
def test_skip_table_chunking_passes_oversized_table_through_unchanged():
|
|
elements = elements_from_json(input_path("chunking/table_2000.json"))
|
|
|
|
chunks = chunk_by_title(elements, skip_table_chunking=True)
|
|
|
|
assert len(chunks) == 1
|
|
assert isinstance(chunks[0], Table)
|
|
|
|
|
|
def test_skip_table_chunking_does_not_combine_table_with_adjacent_text():
|
|
table_text = "cell " * 200
|
|
table = Table(table_text.strip())
|
|
text_before = Text("Hello world")
|
|
text_after = Text("Goodbye world")
|
|
|
|
chunks = chunk_by_title(
|
|
[text_before, table, text_after],
|
|
max_characters=5000,
|
|
combine_text_under_n_chars=5000,
|
|
skip_table_chunking=True,
|
|
)
|
|
|
|
assert isinstance(chunks[0], CompositeElement)
|
|
assert isinstance(chunks[1], Table)
|
|
assert isinstance(chunks[2], CompositeElement)
|
|
assert chunks[1].text == table_text.strip()
|
|
|
|
|
|
def test_it_repeats_table_headers_by_default_but_can_opt_out():
|
|
table_html = (
|
|
"<table>"
|
|
"<thead>"
|
|
"<tr><th>Header A</th><th>Header B</th></tr>"
|
|
"<tr><th>Subhead A</th><th>Subhead B</th></tr>"
|
|
"</thead>"
|
|
"<tbody>"
|
|
"<tr><td>Body 1</td><td>Alpha</td></tr>"
|
|
"<tr><td>Body 2</td><td>Bravo</td></tr>"
|
|
"<tr><td>Body 3</td><td>Charlie</td></tr>"
|
|
"<tr><td>Body 4</td><td>Delta</td></tr>"
|
|
"</tbody>"
|
|
"</table>"
|
|
)
|
|
table_text = (
|
|
"Header A Header B\n"
|
|
"Subhead A Subhead B\n"
|
|
"Body 1 Alpha\n"
|
|
"Body 2 Bravo\n"
|
|
"Body 3 Charlie\n"
|
|
"Body 4 Delta"
|
|
)
|
|
table = Table(table_text, metadata=ElementMetadata(text_as_html=table_html))
|
|
|
|
repeated_header_chunks = chunk_by_title(
|
|
[table], combine_text_under_n_chars=0, max_characters=55
|
|
)
|
|
opt_out_chunks = chunk_by_title(
|
|
[table],
|
|
combine_text_under_n_chars=0,
|
|
max_characters=55,
|
|
repeat_table_headers=False,
|
|
)
|
|
|
|
assert len(repeated_header_chunks) == 4
|
|
assert all(isinstance(chunk, TableChunk) for chunk in repeated_header_chunks)
|
|
assert [chunk.text for chunk in repeated_header_chunks] == [
|
|
"Header A Header B Subhead A Subhead B Body 1 Alpha",
|
|
"Header A Header B Subhead A Subhead B Body 2 Bravo",
|
|
"Header A Header B Subhead A Subhead B Body 3 Charlie",
|
|
"Header A Header B Subhead A Subhead B Body 4 Delta",
|
|
]
|
|
assert [chunk.text for chunk in opt_out_chunks] == [
|
|
"Header A Header B Subhead A Subhead B Body 1 Alpha",
|
|
"Body 2 Bravo Body 3 Charlie Body 4 Delta",
|
|
]
|
|
|
|
|
|
def test_it_starts_new_chunk_for_table_after_full_text_chunk():
|
|
elements = elements_from_json(input_path("chunking/long_text_table_200.json"))
|
|
|
|
chunks = chunk_by_title(elements, max_characters=250)
|
|
|
|
assert len(chunks) == 2
|
|
assert [type(chunk) for chunk in chunks] == [CompositeElement, Table]
|
|
|
|
|
|
def test_it_starts_new_chunk_for_text_after_full_table_chunk():
|
|
elements = elements_from_json(input_path("chunking/full_table_long_text_250.json"))
|
|
|
|
chunks = chunk_by_title(elements, max_characters=250)
|
|
|
|
assert len(chunks) == 2
|
|
assert [type(chunk) for chunk in chunks] == [Table, CompositeElement]
|
|
|
|
|
|
def test_it_splits_a_large_text_element_into_multiple_chunks():
|
|
elements: list[Element] = [
|
|
Title("Introduction"),
|
|
Text(
|
|
"Lorem ipsum dolor sit amet consectetur adipiscing elit. In rhoncus ipsum sed lectus"
|
|
" porta volutpat.",
|
|
),
|
|
]
|
|
|
|
chunks = chunk_by_title(elements, max_characters=50)
|
|
|
|
assert chunks == [
|
|
CompositeElement("Introduction"),
|
|
CompositeElement("Lorem ipsum dolor sit amet consectetur adipiscing"),
|
|
CompositeElement("elit. In rhoncus ipsum sed lectus porta volutpat."),
|
|
]
|
|
|
|
|
|
def test_it_splits_elements_by_title_and_table():
|
|
elements: list[Element] = [
|
|
Title("A Great Day"),
|
|
Text("Today is a great day."),
|
|
Text("It is sunny outside."),
|
|
Table("Heading\nCell text"),
|
|
Title("An Okay Day"),
|
|
Text("Today is an okay day."),
|
|
Text("It is rainy outside."),
|
|
Title("A Bad Day"),
|
|
Text("Today is a bad day."),
|
|
Text("It is storming outside."),
|
|
CheckBox(),
|
|
]
|
|
|
|
chunks = chunk_by_title(elements, combine_text_under_n_chars=0, include_orig_elements=True)
|
|
|
|
assert len(chunks) == 4
|
|
# --
|
|
chunk = chunks[0]
|
|
assert isinstance(chunk, CompositeElement)
|
|
assert chunk.metadata.orig_elements == [
|
|
Title("A Great Day"),
|
|
Text("Today is a great day."),
|
|
Text("It is sunny outside."),
|
|
]
|
|
# --
|
|
chunk = chunks[1]
|
|
assert isinstance(chunk, Table)
|
|
assert len(chunk.metadata.orig_elements) == 1
|
|
assert isinstance(chunk.metadata.orig_elements[0], Table)
|
|
assert chunk.metadata.orig_elements[0].text == "Heading\nCell text"
|
|
# --
|
|
chunk = chunks[2]
|
|
assert isinstance(chunk, CompositeElement)
|
|
assert chunk.metadata.orig_elements == [
|
|
Title("An Okay Day"),
|
|
Text("Today is an okay day."),
|
|
Text("It is rainy outside."),
|
|
]
|
|
# --
|
|
chunk = chunks[3]
|
|
assert isinstance(chunk, CompositeElement)
|
|
assert chunk.metadata.orig_elements == [
|
|
Title("A Bad Day"),
|
|
Text("Today is a bad day."),
|
|
Text("It is storming outside."),
|
|
CheckBox(),
|
|
]
|
|
|
|
|
|
def test_chunk_by_title():
|
|
elements: list[Element] = [
|
|
Title("A Great Day", metadata=ElementMetadata(emphasized_text_contents=["Day"])),
|
|
Text("Today is a great day.", metadata=ElementMetadata(emphasized_text_contents=["day"])),
|
|
Text("It is sunny outside."),
|
|
Table("Heading\nCell text"),
|
|
Title("An Okay Day"),
|
|
Text("Today is an okay day."),
|
|
Text("It is rainy outside."),
|
|
Title("A Bad Day"),
|
|
Text("Today is a bad day."),
|
|
Text("It is storming outside."),
|
|
CheckBox(),
|
|
]
|
|
|
|
chunks = chunk_by_title(elements, combine_text_under_n_chars=0, include_orig_elements=False)
|
|
|
|
assert len(chunks) == 4
|
|
assert chunks[0] == CompositeElement(
|
|
"A Great Day\n\nToday is a great day.\n\nIt is sunny outside."
|
|
)
|
|
assert isinstance(chunks[1], Table)
|
|
assert chunks[1].text == "Heading\nCell text"
|
|
assert chunks[2] == CompositeElement(
|
|
"An Okay Day\n\nToday is an okay day.\n\nIt is rainy outside."
|
|
)
|
|
assert chunks[3] == CompositeElement(
|
|
"A Bad Day\n\nToday is a bad day.\n\nIt is storming outside."
|
|
)
|
|
assert chunks[0].metadata == ElementMetadata(emphasized_text_contents=["Day", "day"])
|
|
|
|
|
|
def test_chunk_by_title_separates_by_page_number():
|
|
elements: list[Element] = [
|
|
Title("A Great Day", metadata=ElementMetadata(page_number=1)),
|
|
Text("Today is a great day.", metadata=ElementMetadata(page_number=2)),
|
|
Text("It is sunny outside.", metadata=ElementMetadata(page_number=2)),
|
|
Table("Heading\nCell text"),
|
|
Title("An Okay Day"),
|
|
Text("Today is an okay day."),
|
|
Text("It is rainy outside."),
|
|
Title("A Bad Day"),
|
|
Text("Today is a bad day."),
|
|
Text("It is storming outside."),
|
|
CheckBox(),
|
|
]
|
|
chunks = chunk_by_title(elements, multipage_sections=False, combine_text_under_n_chars=0)
|
|
|
|
assert len(chunks) == 5
|
|
assert chunks[0] == CompositeElement("A Great Day")
|
|
assert chunks[1] == CompositeElement("Today is a great day.\n\nIt is sunny outside.")
|
|
assert isinstance(chunks[2], Table)
|
|
assert chunks[2].text == "Heading\nCell text"
|
|
assert chunks[3] == CompositeElement(
|
|
"An Okay Day\n\nToday is an okay day.\n\nIt is rainy outside."
|
|
)
|
|
assert chunks[4] == CompositeElement(
|
|
"A Bad Day\n\nToday is a bad day.\n\nIt is storming outside."
|
|
)
|
|
|
|
|
|
def test_chuck_by_title_respects_multipage():
|
|
elements: list[Element] = [
|
|
Title("A Great Day", metadata=ElementMetadata(page_number=1)),
|
|
Text("Today is a great day.", metadata=ElementMetadata(page_number=2)),
|
|
Text("It is sunny outside.", metadata=ElementMetadata(page_number=2)),
|
|
Table("Heading\nCell text"),
|
|
Title("An Okay Day"),
|
|
Text("Today is an okay day."),
|
|
Text("It is rainy outside."),
|
|
Title("A Bad Day"),
|
|
Text("Today is a bad day."),
|
|
Text("It is storming outside."),
|
|
CheckBox(),
|
|
]
|
|
chunks = chunk_by_title(elements, multipage_sections=True, combine_text_under_n_chars=0)
|
|
assert len(chunks) == 4
|
|
assert chunks[0] == CompositeElement(
|
|
"A Great Day\n\nToday is a great day.\n\nIt is sunny outside."
|
|
)
|
|
assert isinstance(chunks[1], Table)
|
|
assert chunks[1].text == "Heading\nCell text"
|
|
assert chunks[2] == CompositeElement(
|
|
"An Okay Day\n\nToday is an okay day.\n\nIt is rainy outside."
|
|
)
|
|
assert chunks[3] == CompositeElement(
|
|
"A Bad Day\n\nToday is a bad day.\n\nIt is storming outside."
|
|
)
|
|
|
|
|
|
def test_chunk_by_title_groups_across_pages():
|
|
elements: list[Element] = [
|
|
Title("A Great Day", metadata=ElementMetadata(page_number=1)),
|
|
Text("Today is a great day.", metadata=ElementMetadata(page_number=2)),
|
|
Text("It is sunny outside.", metadata=ElementMetadata(page_number=2)),
|
|
Table("Heading\nCell text"),
|
|
Title("An Okay Day"),
|
|
Text("Today is an okay day."),
|
|
Text("It is rainy outside."),
|
|
Title("A Bad Day"),
|
|
Text("Today is a bad day."),
|
|
Text("It is storming outside."),
|
|
CheckBox(),
|
|
]
|
|
chunks = chunk_by_title(elements, multipage_sections=True, combine_text_under_n_chars=0)
|
|
|
|
assert len(chunks) == 4
|
|
assert chunks[0] == CompositeElement(
|
|
"A Great Day\n\nToday is a great day.\n\nIt is sunny outside."
|
|
)
|
|
assert isinstance(chunks[1], Table)
|
|
assert chunks[1].text == "Heading\nCell text"
|
|
assert chunks[2] == CompositeElement(
|
|
"An Okay Day\n\nToday is an okay day.\n\nIt is rainy outside."
|
|
)
|
|
assert chunks[3] == CompositeElement(
|
|
"A Bad Day\n\nToday is a bad day.\n\nIt is storming outside."
|
|
)
|
|
|
|
|
|
def test_add_chunking_strategy_on_partition_html():
|
|
filename = "example-docs/example-10k-1p.html"
|
|
chunk_elements = partition_html(filename, chunking_strategy="by_title")
|
|
elements = partition_html(filename)
|
|
chunks = chunk_by_title(elements)
|
|
assert chunk_elements != elements
|
|
assert chunk_elements == chunks
|
|
|
|
|
|
def test_add_chunking_strategy_respects_max_characters():
|
|
filename = "example-docs/example-10k-1p.html"
|
|
chunk_elements = partition_html(
|
|
filename,
|
|
chunking_strategy="by_title",
|
|
combine_text_under_n_chars=0,
|
|
new_after_n_chars=50,
|
|
max_characters=100,
|
|
)
|
|
elements = partition_html(filename)
|
|
chunks = chunk_by_title(
|
|
elements,
|
|
combine_text_under_n_chars=0,
|
|
new_after_n_chars=50,
|
|
max_characters=100,
|
|
)
|
|
|
|
for chunk in chunks:
|
|
assert isinstance(chunk, Text)
|
|
assert len(chunk.text) <= 100
|
|
for chunk_element in chunk_elements:
|
|
assert isinstance(chunk_element, Text)
|
|
assert len(chunk_element.text) <= 100
|
|
assert chunk_elements != elements
|
|
assert chunk_elements == chunks
|
|
|
|
|
|
def test_add_chunking_strategy_forwards_repeat_table_headers():
|
|
filename = "example-docs/example-10k-1p.html"
|
|
chunk_elements = partition_html(
|
|
filename,
|
|
chunking_strategy="by_title",
|
|
repeat_table_headers=False,
|
|
)
|
|
elements = partition_html(filename)
|
|
chunks = chunk_by_title(elements, repeat_table_headers=False)
|
|
|
|
assert chunk_elements != elements
|
|
assert chunk_elements == chunks
|
|
|
|
|
|
def test_chunk_by_title_drops_detection_class_prob():
|
|
elements: list[Element] = [
|
|
Title(
|
|
"A Great Day",
|
|
metadata=ElementMetadata(
|
|
detection_class_prob=0.5,
|
|
),
|
|
),
|
|
Text(
|
|
"Today is a great day.",
|
|
metadata=ElementMetadata(
|
|
detection_class_prob=0.62,
|
|
),
|
|
),
|
|
Text(
|
|
"It is sunny outside.",
|
|
metadata=ElementMetadata(
|
|
detection_class_prob=0.73,
|
|
),
|
|
),
|
|
Title(
|
|
"An Okay Day",
|
|
metadata=ElementMetadata(
|
|
detection_class_prob=0.84,
|
|
),
|
|
),
|
|
Text(
|
|
"Today is an okay day.",
|
|
metadata=ElementMetadata(
|
|
detection_class_prob=0.95,
|
|
),
|
|
),
|
|
]
|
|
chunks = chunk_by_title(elements, combine_text_under_n_chars=0)
|
|
assert str(chunks[0]) == str(
|
|
CompositeElement("A Great Day\n\nToday is a great day.\n\nIt is sunny outside."),
|
|
)
|
|
assert str(chunks[1]) == str(CompositeElement("An Okay Day\n\nToday is an okay day."))
|
|
|
|
|
|
def test_chunk_by_title_drops_extra_metadata():
|
|
elements: list[Element] = [
|
|
Title(
|
|
"A Great Day",
|
|
metadata=ElementMetadata(
|
|
coordinates=CoordinatesMetadata(
|
|
points=(
|
|
(0.1, 0.1),
|
|
(0.2, 0.1),
|
|
(0.1, 0.2),
|
|
(0.2, 0.2),
|
|
),
|
|
system=CoordinateSystem(width=0.1, height=0.1),
|
|
),
|
|
),
|
|
),
|
|
Text(
|
|
"Today is a great day.",
|
|
metadata=ElementMetadata(
|
|
coordinates=CoordinatesMetadata(
|
|
points=(
|
|
(0.2, 0.2),
|
|
(0.3, 0.2),
|
|
(0.2, 0.3),
|
|
(0.3, 0.3),
|
|
),
|
|
system=CoordinateSystem(width=0.2, height=0.2),
|
|
),
|
|
),
|
|
),
|
|
Text(
|
|
"It is sunny outside.",
|
|
metadata=ElementMetadata(
|
|
coordinates=CoordinatesMetadata(
|
|
points=(
|
|
(0.3, 0.3),
|
|
(0.4, 0.3),
|
|
(0.3, 0.4),
|
|
(0.4, 0.4),
|
|
),
|
|
system=CoordinateSystem(width=0.3, height=0.3),
|
|
),
|
|
),
|
|
),
|
|
Title(
|
|
"An Okay Day",
|
|
metadata=ElementMetadata(
|
|
coordinates=CoordinatesMetadata(
|
|
points=(
|
|
(0.3, 0.3),
|
|
(0.4, 0.3),
|
|
(0.3, 0.4),
|
|
(0.4, 0.4),
|
|
),
|
|
system=CoordinateSystem(width=0.3, height=0.3),
|
|
),
|
|
),
|
|
),
|
|
Text(
|
|
"Today is an okay day.",
|
|
metadata=ElementMetadata(
|
|
coordinates=CoordinatesMetadata(
|
|
points=(
|
|
(0.4, 0.4),
|
|
(0.5, 0.4),
|
|
(0.4, 0.5),
|
|
(0.5, 0.5),
|
|
),
|
|
system=CoordinateSystem(width=0.4, height=0.4),
|
|
),
|
|
),
|
|
),
|
|
]
|
|
|
|
chunks = chunk_by_title(elements, combine_text_under_n_chars=0)
|
|
|
|
assert str(chunks[0]) == str(
|
|
CompositeElement("A Great Day\n\nToday is a great day.\n\nIt is sunny outside."),
|
|
)
|
|
|
|
assert str(chunks[1]) == str(CompositeElement("An Okay Day\n\nToday is an okay day."))
|
|
|
|
|
|
def test_it_considers_separator_length_when_pre_chunking():
|
|
"""PreChunker includes length of separators when computing remaining space."""
|
|
elements: list[Element] = [
|
|
Title("Chunking Priorities"), # 19 chars
|
|
ListItem("Divide text into manageable chunks"), # 34 chars
|
|
ListItem("Preserve semantic boundaries"), # 28 chars
|
|
ListItem("Minimize mid-text chunk-splitting"), # 33 chars
|
|
] # 114 chars total but 120 chars with separators
|
|
|
|
chunks = chunk_by_title(elements, max_characters=115)
|
|
|
|
assert chunks == [
|
|
CompositeElement(
|
|
"Chunking Priorities"
|
|
"\n\nDivide text into manageable chunks"
|
|
"\n\nPreserve semantic boundaries",
|
|
),
|
|
CompositeElement("Minimize mid-text chunk-splitting"),
|
|
]
|
|
|
|
|
|
# ================================================================================================
|
|
# UNIT-TESTS
|
|
# ================================================================================================
|
|
# These test individual components in isolation so can exercise all edge cases while still
|
|
# performing well.
|
|
# ================================================================================================
|
|
|
|
|
|
class Describe_chunk_by_title:
|
|
"""Unit-test suite for `unstructured.chunking.title.chunk_by_title()` function."""
|
|
|
|
@pytest.mark.parametrize(
|
|
("kwargs", "expected_value"),
|
|
[
|
|
({"include_orig_elements": True}, True),
|
|
({"include_orig_elements": False}, False),
|
|
({"include_orig_elements": None}, True),
|
|
({}, True),
|
|
],
|
|
)
|
|
def it_supports_the_include_orig_elements_option(
|
|
self, kwargs: dict[str, Any], expected_value: bool, _chunk_by_title_: Mock
|
|
):
|
|
# -- this line would raise if "include_orig_elements" was not an available parameter on
|
|
# -- `chunk_by_title()`.
|
|
chunk_by_title([], **kwargs)
|
|
|
|
_, opts = _chunk_by_title_.call_args.args
|
|
assert opts.include_orig_elements is expected_value
|
|
|
|
@pytest.mark.parametrize(
|
|
("kwargs", "expected_value"),
|
|
[
|
|
({"repeat_table_headers": True}, True),
|
|
({"repeat_table_headers": False}, False),
|
|
({"repeat_table_headers": None}, True),
|
|
({}, True),
|
|
],
|
|
)
|
|
def it_supports_the_repeat_table_headers_option(
|
|
self, kwargs: dict[str, Any], expected_value: bool, _chunk_by_title_: Mock
|
|
):
|
|
# -- this line would raise if "repeat_table_headers" was not an available parameter on
|
|
# -- `chunk_by_title()`.
|
|
chunk_by_title([], **kwargs)
|
|
|
|
_, opts = _chunk_by_title_.call_args.args
|
|
assert opts.repeat_table_headers is expected_value
|
|
|
|
@pytest.mark.parametrize(
|
|
("kwargs", "expected_value"),
|
|
[
|
|
({"skip_table_chunking": True}, True),
|
|
({"skip_table_chunking": False}, False),
|
|
({"skip_table_chunking": None}, False),
|
|
({}, False),
|
|
],
|
|
)
|
|
def it_supports_the_skip_table_chunking_option(
|
|
self, kwargs: dict[str, Any], expected_value: bool, _chunk_by_title_: Mock
|
|
):
|
|
chunk_by_title([], **kwargs)
|
|
|
|
_, opts = _chunk_by_title_.call_args.args
|
|
assert opts.skip_table_chunking is expected_value
|
|
|
|
@pytest.mark.parametrize(
|
|
("kwargs", "expected_value"),
|
|
[
|
|
({"isolate_table": True}, True),
|
|
({"isolate_table": False}, False),
|
|
({"isolate_table": None}, True),
|
|
({}, True),
|
|
],
|
|
)
|
|
def it_supports_the_isolate_table_option(
|
|
self, kwargs: dict[str, Any], expected_value: bool, _chunk_by_title_: Mock
|
|
):
|
|
chunk_by_title([], **kwargs)
|
|
|
|
_, opts = _chunk_by_title_.call_args.args
|
|
assert opts.isolate_table is expected_value
|
|
|
|
# -- fixtures --------------------------------------------------------------------------------
|
|
|
|
@pytest.fixture()
|
|
def _chunk_by_title_(self, request: FixtureRequest):
|
|
return function_mock(request, "unstructured.chunking.title._chunk_by_title")
|
|
|
|
|
|
class Describe_ByTitleChunkingOptions:
|
|
"""Unit-test suite for `unstructured.chunking.title._ByTitleChunkingOptions` objects."""
|
|
|
|
@pytest.mark.parametrize("n_chars", [-1, -42])
|
|
def it_rejects_combine_text_under_n_chars_for_n_less_than_zero(self, n_chars: int):
|
|
with pytest.raises(
|
|
ValueError,
|
|
match=f"'combine_text_under_n_chars' argument must be >= 0, got {n_chars}",
|
|
):
|
|
_ByTitleChunkingOptions.new(combine_text_under_n_chars=n_chars)
|
|
|
|
def it_accepts_0_for_combine_text_under_n_chars_to_disable_chunk_combining(self):
|
|
"""Specifying `combine_text_under_n_chars=0` is how a caller disables chunk-combining."""
|
|
opts = _ByTitleChunkingOptions(combine_text_under_n_chars=0)
|
|
assert opts.combine_text_under_n_chars == 0
|
|
|
|
def it_does_not_complain_when_specifying_combine_text_under_n_chars_by_itself(self):
|
|
"""Caller can specify `combine_text_under_n_chars` arg without specifying other options."""
|
|
try:
|
|
opts = _ByTitleChunkingOptions(combine_text_under_n_chars=50)
|
|
except ValueError:
|
|
pytest.fail("did not accept `combine_text_under_n_chars` as option by itself")
|
|
|
|
assert opts.combine_text_under_n_chars == 50
|
|
|
|
@pytest.mark.parametrize(
|
|
("combine_text_under_n_chars", "max_characters", "expected_hard_max"),
|
|
[(600, None, 500), (600, 450, 450)],
|
|
)
|
|
def it_rejects_combine_text_under_n_chars_greater_than_maxchars(
|
|
self, combine_text_under_n_chars: int, max_characters: Optional[int], expected_hard_max: int
|
|
):
|
|
"""`combine_text_under_n_chars` > `max_characters` can produce behavior confusing to users.
|
|
|
|
The behavior is no different from `combine_text_under_n_chars == max_characters`, but if
|
|
`max_characters` is left to default (500) and `combine_text_under_n_chars` is set to a
|
|
larger number like 1500 then it can look like chunk-combining isn't working.
|
|
"""
|
|
with pytest.raises(
|
|
ValueError,
|
|
match=(
|
|
"'combine_text_under_n_chars' argument must not exceed `max_characters` value,"
|
|
f" got {combine_text_under_n_chars} > {expected_hard_max}"
|
|
),
|
|
):
|
|
_ByTitleChunkingOptions.new(
|
|
max_characters=max_characters, combine_text_under_n_chars=combine_text_under_n_chars
|
|
)
|
|
|
|
def it_does_not_complain_when_specifying_new_after_n_chars_by_itself(self):
|
|
"""Caller can specify `new_after_n_chars` arg without specifying any other options."""
|
|
try:
|
|
opts = _ByTitleChunkingOptions.new(new_after_n_chars=200)
|
|
except ValueError:
|
|
pytest.fail("did not accept `new_after_n_chars` as option by itself")
|
|
|
|
assert opts.soft_max == 200
|
|
|
|
@pytest.mark.parametrize(
|
|
("multipage_sections", "expected_value"),
|
|
[(True, True), (False, False), (None, CHUNK_MULTI_PAGE_DEFAULT)],
|
|
)
|
|
def it_knows_whether_to_break_chunks_on_page_boundaries(
|
|
self, multipage_sections: bool, expected_value: bool
|
|
):
|
|
opts = _ByTitleChunkingOptions(multipage_sections=multipage_sections)
|
|
assert opts.multipage_sections is expected_value
|
|
|
|
|
|
# ================================================================================================
|
|
# TOKEN-BASED CHUNKING INTEGRATION TESTS
|
|
# ================================================================================================
|
|
|
|
|
|
class DescribeTokenBasedChunking:
|
|
"""Integration tests for token-based chunking with chunk_by_title()."""
|
|
|
|
@pytest.fixture
|
|
def _tiktoken_installed(self):
|
|
"""Skip test if tiktoken is not installed."""
|
|
pytest.importorskip("tiktoken")
|
|
|
|
def it_chunks_elements_by_token_count(self, _tiktoken_installed: None):
|
|
"""Test that chunk_by_title works with max_tokens parameter and respects token limits."""
|
|
import tiktoken
|
|
|
|
enc = tiktoken.get_encoding("cl100k_base")
|
|
elements: list[Element] = [
|
|
Title("Introduction"),
|
|
Text("This is a test document with some text content."),
|
|
Text("Here is more content that should be chunked appropriately."),
|
|
]
|
|
|
|
chunks = chunk_by_title(
|
|
elements,
|
|
max_tokens=20,
|
|
tokenizer="cl100k_base",
|
|
combine_text_under_n_chars=0,
|
|
)
|
|
|
|
# -- verify chunks were created --
|
|
assert len(chunks) >= 1
|
|
assert all(isinstance(chunk, (CompositeElement, Table, TableChunk)) for chunk in chunks)
|
|
|
|
# -- verify each chunk respects the token limit --
|
|
for chunk in chunks:
|
|
token_count = len(enc.encode(chunk.text))
|
|
assert token_count <= 20, f"Chunk exceeded token limit: {token_count} tokens"
|
|
|
|
# -- verify the first chunk contains expected content --
|
|
assert "Introduction" in chunks[0].text
|
|
|
|
def it_respects_new_after_n_tokens_soft_limit(self, _tiktoken_installed: None):
|
|
"""Test that new_after_n_tokens creates smaller chunks with correct content."""
|
|
import tiktoken
|
|
|
|
enc = tiktoken.get_encoding("cl100k_base")
|
|
elements: list[Element] = [
|
|
Title("Section 1"),
|
|
Text("Some text for section one."),
|
|
Text("More text for section one."),
|
|
Title("Section 2"),
|
|
Text("Text for section two."),
|
|
]
|
|
|
|
# -- with a low soft limit, each section should become its own chunk --
|
|
chunks = chunk_by_title(
|
|
elements,
|
|
max_tokens=100,
|
|
new_after_n_tokens=10,
|
|
tokenizer="cl100k_base",
|
|
combine_text_under_n_chars=0,
|
|
)
|
|
|
|
# -- verify we get multiple chunks --
|
|
assert len(chunks) >= 2
|
|
|
|
# -- verify each chunk respects the hard limit --
|
|
for chunk in chunks:
|
|
token_count = len(enc.encode(chunk.text))
|
|
assert token_count <= 100, f"Chunk exceeded token limit: {token_count} tokens"
|
|
|
|
# -- verify content is distributed across chunks --
|
|
all_text = " ".join(chunk.text for chunk in chunks)
|
|
assert "Section 1" in all_text
|
|
assert "Section 2" in all_text
|
|
|
|
def it_rejects_max_tokens_and_max_characters_together(self, _tiktoken_installed: None):
|
|
"""Test that specifying both max_tokens and max_characters raises ValueError."""
|
|
elements: list[Element] = [Text("Some text")]
|
|
|
|
with pytest.raises(ValueError, match="mutually exclusive"):
|
|
chunk_by_title(
|
|
elements,
|
|
max_tokens=100,
|
|
max_characters=500,
|
|
tokenizer="cl100k_base",
|
|
)
|
|
|
|
def it_rejects_max_tokens_without_tokenizer(self, _tiktoken_installed: None):
|
|
"""Test that max_tokens requires tokenizer to be specified."""
|
|
elements: list[Element] = [Text("Some text")]
|
|
|
|
with pytest.raises(ValueError, match="'tokenizer' is required"):
|
|
chunk_by_title(elements, max_tokens=100)
|
|
|
|
def it_accepts_model_name_as_tokenizer(self, _tiktoken_installed: None):
|
|
"""Test that model names like 'gpt-4' work as tokenizer."""
|
|
import tiktoken
|
|
|
|
# -- gpt-4 uses cl100k_base encoding --
|
|
enc = tiktoken.encoding_for_model("gpt-4")
|
|
elements: list[Element] = [
|
|
Title("Test"),
|
|
Text("Some test content."),
|
|
]
|
|
|
|
chunks = chunk_by_title(
|
|
elements,
|
|
max_tokens=50,
|
|
tokenizer="gpt-4",
|
|
combine_text_under_n_chars=0,
|
|
)
|
|
|
|
assert len(chunks) >= 1
|
|
|
|
# -- verify token counts are within limit --
|
|
for chunk in chunks:
|
|
token_count = len(enc.encode(chunk.text))
|
|
assert token_count <= 50, f"Chunk exceeded token limit: {token_count} tokens"
|
|
|
|
# -- verify content --
|
|
assert chunks[0].text == "Test\n\nSome test content."
|
|
|
|
def it_splits_oversized_element_respecting_token_limit(self, _tiktoken_installed: None):
|
|
"""Test that oversized elements are split correctly by token count."""
|
|
import tiktoken
|
|
|
|
enc = tiktoken.get_encoding("cl100k_base")
|
|
# -- create a text that will definitely need to be split (>10 tokens) --
|
|
long_text = "The quick brown fox jumps over the lazy dog. " * 10
|
|
elements: list[Element] = [Text(long_text)]
|
|
|
|
chunks = chunk_by_title(
|
|
elements,
|
|
max_tokens=15,
|
|
tokenizer="cl100k_base",
|
|
combine_text_under_n_chars=0,
|
|
)
|
|
|
|
# -- should produce multiple chunks --
|
|
assert len(chunks) > 1
|
|
|
|
# -- each chunk should respect the token limit --
|
|
for chunk in chunks:
|
|
token_count = len(enc.encode(chunk.text))
|
|
assert token_count <= 15, f"Chunk exceeded token limit: {token_count} tokens"
|
|
|
|
def it_applies_token_based_overlap_in_split_chunks(self, _tiktoken_installed: None):
|
|
"""Test that overlap in token mode is measured in tokens, not characters."""
|
|
import tiktoken
|
|
|
|
enc = tiktoken.get_encoding("cl100k_base")
|
|
# -- create text that will be split into multiple chunks --
|
|
long_text = "Apple banana cherry date elderberry fig grape honeydew. " * 5
|
|
elements: list[Element] = [Text(long_text)]
|
|
|
|
chunks = chunk_by_title(
|
|
elements,
|
|
max_tokens=12,
|
|
tokenizer="cl100k_base",
|
|
overlap=3, # 3 tokens of overlap
|
|
combine_text_under_n_chars=0,
|
|
)
|
|
|
|
# -- should produce multiple chunks --
|
|
assert len(chunks) >= 2
|
|
|
|
# -- verify overlap: second chunk should start with tokens from end of first --
|
|
if len(chunks) >= 2:
|
|
# -- the overlap tail from chunk 0 should appear at start of chunk 1 --
|
|
first_chunk_text = chunks[0].text
|
|
second_chunk_text = chunks[1].text
|
|
|
|
# -- the overlap should be approximately 3 tokens worth of text --
|
|
# -- verify second chunk starts with content from end of first chunk --
|
|
# -- (the overlap mechanism prepends tail to remainder) --
|
|
assert len(second_chunk_text) > 0
|
|
# -- verify some content from first chunk appears at start of second --
|
|
first_chunk_words = first_chunk_text.split()
|
|
assert any(word in second_chunk_text for word in first_chunk_words[-3:])
|
|
# -- verify each chunk respects limits --
|
|
for chunk in chunks:
|
|
token_count = len(enc.encode(chunk.text))
|
|
assert token_count <= 12, f"Chunk exceeded token limit: {token_count} tokens"
|