docs: fix links between docs pages (#697)

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
Michele Dolfi 2025-01-20 09:52:59 +01:00 committed by GitHub
parent e4c7210133
commit c49b3526fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -54,12 +54,12 @@ tokens), &
chunks with same headings & captions) — users can opt out of this step via param chunks with same headings & captions) — users can opt out of this step via param
`merge_peers` (by default `True`) `merge_peers` (by default `True`)
👉 Example: see [here](../../examples/hybrid_chunking). 👉 Example: see [here](../examples/hybrid_chunking.ipynb).
## Hierarchical Chunker ## Hierarchical Chunker
The `HierarchicalChunker` implementation uses the document structure information from The `HierarchicalChunker` implementation uses the document structure information from
the [`DoclingDocument`](../docling_document) to create one chunk for each individual the [`DoclingDocument`](./docling_document.md) to create one chunk for each individual
detected document element, by default only merging together list items (can be opted out detected document element, by default only merging together list items (can be opted out
via param `merge_list_items`). It also takes care of attaching all relevant document via param `merge_list_items`). It also takes care of attaching all relevant document
metadata, including headers and captions. metadata, including headers and captions.

View File

@ -95,8 +95,8 @@ doc_converter = (
More options are shown in the following example units: More options are shown in the following example units:
- [run_with_formats.py](../examples/run_with_formats/) - [run_with_formats.py](examples/run_with_formats.py)
- [custom_convert.py](../examples/custom_convert/) - [custom_convert.py](examples/custom_convert.py)
### Converting documents ### Converting documents
@ -226,4 +226,4 @@ leverages the new `DoclingDocument` and provides a new, richer chunk output form
- any applicable headings for context - any applicable headings for context
- any applicable captions for context - any applicable captions for context
For an example, check out [Chunking usage](../usage/#chunking). For an example, check out [Chunking usage](usage.md#chunking).