docling 2.21.0__tar.gz → 2.22.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. {docling-2.21.0 → docling-2.22.0}/PKG-INFO +2 -2
  2. docling-2.22.0/docling/backend/csv_backend.py +125 -0
  3. {docling-2.21.0 → docling-2.22.0}/docling/cli/main.py +7 -0
  4. {docling-2.21.0 → docling-2.22.0}/docling/datamodel/base_models.py +3 -0
  5. {docling-2.21.0 → docling-2.22.0}/docling/datamodel/document.py +33 -0
  6. {docling-2.21.0 → docling-2.22.0}/docling/datamodel/pipeline_options.py +1 -0
  7. {docling-2.21.0 → docling-2.22.0}/docling/datamodel/settings.py +2 -1
  8. {docling-2.21.0 → docling-2.22.0}/docling/document_converter.py +9 -0
  9. {docling-2.21.0 → docling-2.22.0}/docling/exceptions.py +4 -0
  10. {docling-2.21.0 → docling-2.22.0}/docling/models/picture_description_api_model.py +11 -4
  11. {docling-2.21.0 → docling-2.22.0}/docling/models/tesseract_ocr_model.py +1 -2
  12. {docling-2.21.0 → docling-2.22.0}/docling/pipeline/standard_pdf_pipeline.py +9 -0
  13. {docling-2.21.0 → docling-2.22.0}/pyproject.toml +2 -2
  14. {docling-2.21.0 → docling-2.22.0}/LICENSE +0 -0
  15. {docling-2.21.0 → docling-2.22.0}/README.md +0 -0
  16. {docling-2.21.0 → docling-2.22.0}/docling/__init__.py +0 -0
  17. {docling-2.21.0 → docling-2.22.0}/docling/backend/__init__.py +0 -0
  18. {docling-2.21.0 → docling-2.22.0}/docling/backend/abstract_backend.py +0 -0
  19. {docling-2.21.0 → docling-2.22.0}/docling/backend/asciidoc_backend.py +0 -0
  20. {docling-2.21.0 → docling-2.22.0}/docling/backend/docling_parse_backend.py +0 -0
  21. {docling-2.21.0 → docling-2.22.0}/docling/backend/docling_parse_v2_backend.py +0 -0
  22. {docling-2.21.0 → docling-2.22.0}/docling/backend/html_backend.py +0 -0
  23. {docling-2.21.0 → docling-2.22.0}/docling/backend/json/__init__.py +0 -0
  24. {docling-2.21.0 → docling-2.22.0}/docling/backend/json/docling_json_backend.py +0 -0
  25. {docling-2.21.0 → docling-2.22.0}/docling/backend/md_backend.py +0 -0
  26. {docling-2.21.0 → docling-2.22.0}/docling/backend/msexcel_backend.py +0 -0
  27. {docling-2.21.0 → docling-2.22.0}/docling/backend/mspowerpoint_backend.py +0 -0
  28. {docling-2.21.0 → docling-2.22.0}/docling/backend/msword_backend.py +0 -0
  29. {docling-2.21.0 → docling-2.22.0}/docling/backend/pdf_backend.py +0 -0
  30. {docling-2.21.0 → docling-2.22.0}/docling/backend/pypdfium2_backend.py +0 -0
  31. {docling-2.21.0 → docling-2.22.0}/docling/backend/xml/__init__.py +0 -0
  32. {docling-2.21.0 → docling-2.22.0}/docling/backend/xml/pubmed_backend.py +0 -0
  33. {docling-2.21.0 → docling-2.22.0}/docling/backend/xml/uspto_backend.py +0 -0
  34. {docling-2.21.0 → docling-2.22.0}/docling/chunking/__init__.py +0 -0
  35. {docling-2.21.0 → docling-2.22.0}/docling/cli/__init__.py +0 -0
  36. {docling-2.21.0 → docling-2.22.0}/docling/cli/models.py +0 -0
  37. {docling-2.21.0 → docling-2.22.0}/docling/cli/tools.py +0 -0
  38. {docling-2.21.0 → docling-2.22.0}/docling/datamodel/__init__.py +0 -0
  39. {docling-2.21.0 → docling-2.22.0}/docling/models/__init__.py +0 -0
  40. {docling-2.21.0 → docling-2.22.0}/docling/models/base_model.py +0 -0
  41. {docling-2.21.0 → docling-2.22.0}/docling/models/base_ocr_model.py +0 -0
  42. {docling-2.21.0 → docling-2.22.0}/docling/models/code_formula_model.py +0 -0
  43. {docling-2.21.0 → docling-2.22.0}/docling/models/document_picture_classifier.py +0 -0
  44. {docling-2.21.0 → docling-2.22.0}/docling/models/ds_glm_model.py +0 -0
  45. {docling-2.21.0 → docling-2.22.0}/docling/models/easyocr_model.py +0 -0
  46. {docling-2.21.0 → docling-2.22.0}/docling/models/layout_model.py +0 -0
  47. {docling-2.21.0 → docling-2.22.0}/docling/models/ocr_mac_model.py +0 -0
  48. {docling-2.21.0 → docling-2.22.0}/docling/models/page_assemble_model.py +0 -0
  49. {docling-2.21.0 → docling-2.22.0}/docling/models/page_preprocessing_model.py +0 -0
  50. {docling-2.21.0 → docling-2.22.0}/docling/models/picture_description_base_model.py +0 -0
  51. {docling-2.21.0 → docling-2.22.0}/docling/models/picture_description_vlm_model.py +0 -0
  52. {docling-2.21.0 → docling-2.22.0}/docling/models/rapid_ocr_model.py +0 -0
  53. {docling-2.21.0 → docling-2.22.0}/docling/models/table_structure_model.py +0 -0
  54. {docling-2.21.0 → docling-2.22.0}/docling/models/tesseract_ocr_cli_model.py +0 -0
  55. {docling-2.21.0 → docling-2.22.0}/docling/pipeline/__init__.py +0 -0
  56. {docling-2.21.0 → docling-2.22.0}/docling/pipeline/base_pipeline.py +0 -0
  57. {docling-2.21.0 → docling-2.22.0}/docling/pipeline/simple_pipeline.py +0 -0
  58. {docling-2.21.0 → docling-2.22.0}/docling/py.typed +0 -0
  59. {docling-2.21.0 → docling-2.22.0}/docling/utils/__init__.py +0 -0
  60. {docling-2.21.0 → docling-2.22.0}/docling/utils/accelerator_utils.py +0 -0
  61. {docling-2.21.0 → docling-2.22.0}/docling/utils/export.py +0 -0
  62. {docling-2.21.0 → docling-2.22.0}/docling/utils/glm_utils.py +0 -0
  63. {docling-2.21.0 → docling-2.22.0}/docling/utils/layout_postprocessor.py +0 -0
  64. {docling-2.21.0 → docling-2.22.0}/docling/utils/model_downloader.py +0 -0
  65. {docling-2.21.0 → docling-2.22.0}/docling/utils/ocr_utils.py +0 -0
  66. {docling-2.21.0 → docling-2.22.0}/docling/utils/profiling.py +0 -0
  67. {docling-2.21.0 → docling-2.22.0}/docling/utils/utils.py +0 -0
  68. {docling-2.21.0 → docling-2.22.0}/docling/utils/visualization.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: docling
3
- Version: 2.21.0
3
+ Version: 2.22.0
4
4
  Summary: SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications.
5
5
  Home-page: https://github.com/DS4SD/docling
6
6
  License: MIT
@@ -41,7 +41,7 @@ Requires-Dist: onnxruntime (>=1.7.0,<1.20.0) ; (python_version < "3.10") and (ex
41
41
  Requires-Dist: onnxruntime (>=1.7.0,<2.0.0) ; (python_version >= "3.10") and (extra == "rapidocr")
42
42
  Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
43
43
  Requires-Dist: pandas (>=2.1.4,<3.0.0)
44
- Requires-Dist: pillow (>=10.0.0,<11.0.0)
44
+ Requires-Dist: pillow (>=10.0.0,<12.0.0)
45
45
  Requires-Dist: pydantic (>=2.0.0,<3.0.0)
46
46
  Requires-Dist: pydantic-settings (>=2.3.0,<3.0.0)
47
47
  Requires-Dist: pypdfium2 (>=4.30.0,<5.0.0)
@@ -0,0 +1,125 @@
1
+ import csv
2
+ import logging
3
+ import warnings
4
+ from io import BytesIO, StringIO
5
+ from pathlib import Path
6
+ from typing import Set, Union
7
+
8
+ from docling_core.types.doc import DoclingDocument, DocumentOrigin, TableCell, TableData
9
+
10
+ from docling.backend.abstract_backend import DeclarativeDocumentBackend
11
+ from docling.datamodel.base_models import InputFormat
12
+ from docling.datamodel.document import InputDocument
13
+
14
+ _log = logging.getLogger(__name__)
15
+
16
+
17
+ class CsvDocumentBackend(DeclarativeDocumentBackend):
18
+ content: StringIO
19
+
20
+ def __init__(self, in_doc: "InputDocument", path_or_stream: Union[BytesIO, Path]):
21
+ super().__init__(in_doc, path_or_stream)
22
+
23
+ # Load content
24
+ try:
25
+ if isinstance(self.path_or_stream, BytesIO):
26
+ self.content = StringIO(self.path_or_stream.getvalue().decode("utf-8"))
27
+ elif isinstance(self.path_or_stream, Path):
28
+ self.content = StringIO(self.path_or_stream.read_text("utf-8"))
29
+ self.valid = True
30
+ except Exception as e:
31
+ raise RuntimeError(
32
+ f"CsvDocumentBackend could not load document with hash {self.document_hash}"
33
+ ) from e
34
+ return
35
+
36
+ def is_valid(self) -> bool:
37
+ return self.valid
38
+
39
+ @classmethod
40
+ def supports_pagination(cls) -> bool:
41
+ return False
42
+
43
+ def unload(self):
44
+ if isinstance(self.path_or_stream, BytesIO):
45
+ self.path_or_stream.close()
46
+ self.path_or_stream = None
47
+
48
+ @classmethod
49
+ def supported_formats(cls) -> Set[InputFormat]:
50
+ return {InputFormat.CSV}
51
+
52
+ def convert(self) -> DoclingDocument:
53
+ """
54
+ Parses the CSV data into a structured document model.
55
+ """
56
+
57
+ # Detect CSV dialect
58
+ head = self.content.readline()
59
+ dialect = csv.Sniffer().sniff(head, ",;\t|:")
60
+ _log.info(f'Parsing CSV with delimiter: "{dialect.delimiter}"')
61
+ if not dialect.delimiter in {",", ";", "\t", "|", ":"}:
62
+ raise RuntimeError(
63
+ f"Cannot convert csv with unknown delimiter {dialect.delimiter}."
64
+ )
65
+
66
+ # Parce CSV
67
+ self.content.seek(0)
68
+ result = csv.reader(self.content, dialect=dialect, strict=True)
69
+ self.csv_data = list(result)
70
+ _log.info(f"Detected {len(self.csv_data)} lines")
71
+
72
+ # Ensure uniform column length
73
+ expected_length = len(self.csv_data[0])
74
+ is_uniform = all(len(row) == expected_length for row in self.csv_data)
75
+ if not is_uniform:
76
+ warnings.warn(
77
+ f"Inconsistent column lengths detected in CSV data. "
78
+ f"Expected {expected_length} columns, but found rows with varying lengths. "
79
+ f"Ensure all rows have the same number of columns."
80
+ )
81
+
82
+ # Parse the CSV into a structured document model
83
+ origin = DocumentOrigin(
84
+ filename=self.file.name or "file.csv",
85
+ mimetype="text/csv",
86
+ binary_hash=self.document_hash,
87
+ )
88
+
89
+ doc = DoclingDocument(name=self.file.stem or "file.csv", origin=origin)
90
+
91
+ if self.is_valid():
92
+ # Convert CSV data to table
93
+ if self.csv_data:
94
+ num_rows = len(self.csv_data)
95
+ num_cols = max(len(row) for row in self.csv_data)
96
+
97
+ table_data = TableData(
98
+ num_rows=num_rows,
99
+ num_cols=num_cols,
100
+ table_cells=[],
101
+ )
102
+
103
+ # Convert each cell to TableCell
104
+ for row_idx, row in enumerate(self.csv_data):
105
+ for col_idx, cell_value in enumerate(row):
106
+ cell = TableCell(
107
+ text=str(cell_value),
108
+ row_span=1, # CSV doesn't support merged cells
109
+ col_span=1,
110
+ start_row_offset_idx=row_idx,
111
+ end_row_offset_idx=row_idx + 1,
112
+ start_col_offset_idx=col_idx,
113
+ end_col_offset_idx=col_idx + 1,
114
+ col_header=row_idx == 0, # First row as header
115
+ row_header=False,
116
+ )
117
+ table_data.table_cells.append(cell)
118
+
119
+ doc.add_table(data=table_data)
120
+ else:
121
+ raise RuntimeError(
122
+ f"Cannot convert doc with {self.document_hash} because the backend failed to init."
123
+ )
124
+
125
+ return doc
@@ -234,6 +234,12 @@ def convert(
234
234
  Optional[Path],
235
235
  typer.Option(..., help="If provided, the location of the model artifacts."),
236
236
  ] = None,
237
+ enable_remote_services: Annotated[
238
+ bool,
239
+ typer.Option(
240
+ ..., help="Must be enabled when using models connecting to remote services."
241
+ ),
242
+ ] = False,
237
243
  abort_on_error: Annotated[
238
244
  bool,
239
245
  typer.Option(
@@ -380,6 +386,7 @@ def convert(
380
386
 
381
387
  accelerator_options = AcceleratorOptions(num_threads=num_threads, device=device)
382
388
  pipeline_options = PdfPipelineOptions(
389
+ enable_remote_services=enable_remote_services,
383
390
  accelerator_options=accelerator_options,
384
391
  do_ocr=ocr,
385
392
  ocr_options=ocr_options,
@@ -39,6 +39,7 @@ class InputFormat(str, Enum):
39
39
  PDF = "pdf"
40
40
  ASCIIDOC = "asciidoc"
41
41
  MD = "md"
42
+ CSV = "csv"
42
43
  XLSX = "xlsx"
43
44
  XML_USPTO = "xml_uspto"
44
45
  JSON_DOCLING = "json_docling"
@@ -61,6 +62,7 @@ FormatToExtensions: Dict[InputFormat, List[str]] = {
61
62
  InputFormat.XML_PUBMED: ["xml", "nxml"],
62
63
  InputFormat.IMAGE: ["jpg", "jpeg", "png", "tif", "tiff", "bmp"],
63
64
  InputFormat.ASCIIDOC: ["adoc", "asciidoc", "asc"],
65
+ InputFormat.CSV: ["csv"],
64
66
  InputFormat.XLSX: ["xlsx"],
65
67
  InputFormat.XML_USPTO: ["xml", "txt"],
66
68
  InputFormat.JSON_DOCLING: ["json"],
@@ -88,6 +90,7 @@ FormatToMimeType: Dict[InputFormat, List[str]] = {
88
90
  InputFormat.PDF: ["application/pdf"],
89
91
  InputFormat.ASCIIDOC: ["text/asciidoc"],
90
92
  InputFormat.MD: ["text/markdown", "text/x-markdown"],
93
+ InputFormat.CSV: ["text/csv"],
91
94
  InputFormat.XLSX: [
92
95
  "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
93
96
  ],
@@ -1,3 +1,4 @@
1
+ import csv
1
2
  import logging
2
3
  import re
3
4
  from enum import Enum
@@ -296,6 +297,7 @@ class _DocumentConversionInput(BaseModel):
296
297
  mime = _DocumentConversionInput._mime_from_extension(ext)
297
298
 
298
299
  mime = mime or _DocumentConversionInput._detect_html_xhtml(content)
300
+ mime = mime or _DocumentConversionInput._detect_csv(content)
299
301
  mime = mime or "text/plain"
300
302
  formats = MimeTypeToFormat.get(mime, [])
301
303
  if formats:
@@ -352,6 +354,8 @@ class _DocumentConversionInput(BaseModel):
352
354
  mime = FormatToMimeType[InputFormat.HTML][0]
353
355
  elif ext in FormatToExtensions[InputFormat.MD]:
354
356
  mime = FormatToMimeType[InputFormat.MD][0]
357
+ elif ext in FormatToExtensions[InputFormat.CSV]:
358
+ mime = FormatToMimeType[InputFormat.CSV][0]
355
359
  elif ext in FormatToExtensions[InputFormat.JSON_DOCLING]:
356
360
  mime = FormatToMimeType[InputFormat.JSON_DOCLING][0]
357
361
  elif ext in FormatToExtensions[InputFormat.PDF]:
@@ -392,3 +396,32 @@ class _DocumentConversionInput(BaseModel):
392
396
  return "application/xml"
393
397
 
394
398
  return None
399
+
400
+ @staticmethod
401
+ def _detect_csv(
402
+ content: bytes,
403
+ ) -> Optional[Literal["text/csv"]]:
404
+ """Guess the mime type of a CSV file from its content.
405
+
406
+ Args:
407
+ content: A short piece of a document from its beginning.
408
+
409
+ Returns:
410
+ The mime type of a CSV file, or None if the content does
411
+ not match any of the format.
412
+ """
413
+ content_str = content.decode("ascii", errors="ignore").strip()
414
+
415
+ # Ensure there's at least one newline (CSV is usually multi-line)
416
+ if "\n" not in content_str:
417
+ return None
418
+
419
+ # Use csv.Sniffer to detect CSV characteristics
420
+ try:
421
+ dialect = csv.Sniffer().sniff(content_str)
422
+ if dialect.delimiter in {",", ";", "\t", "|"}: # Common delimiters
423
+ return "text/csv"
424
+ except csv.Error:
425
+ return None
426
+
427
+ return None
@@ -257,6 +257,7 @@ class PipelineOptions(BaseModel):
257
257
  )
258
258
  document_timeout: Optional[float] = None
259
259
  accelerator_options: AcceleratorOptions = AcceleratorOptions()
260
+ enable_remote_services: bool = False
260
261
 
261
262
 
262
263
  class PdfPipelineOptions(PipelineOptions):
@@ -1,6 +1,6 @@
1
1
  import sys
2
2
  from pathlib import Path
3
- from typing import Annotated, Tuple
3
+ from typing import Annotated, Optional, Tuple
4
4
 
5
5
  from pydantic import BaseModel, PlainValidator
6
6
  from pydantic_settings import BaseSettings, SettingsConfigDict
@@ -62,6 +62,7 @@ class AppSettings(BaseSettings):
62
62
  debug: DebugSettings
63
63
 
64
64
  cache_dir: Path = Path.home() / ".cache" / "docling"
65
+ artifacts_path: Optional[Path] = None
65
66
 
66
67
 
67
68
  settings = AppSettings(perf=BatchConcurrencySettings(), debug=DebugSettings())
@@ -10,6 +10,7 @@ from pydantic import BaseModel, ConfigDict, model_validator, validate_call
10
10
 
11
11
  from docling.backend.abstract_backend import AbstractDocumentBackend
12
12
  from docling.backend.asciidoc_backend import AsciiDocBackend
13
+ from docling.backend.csv_backend import CsvDocumentBackend
13
14
  from docling.backend.docling_parse_v2_backend import DoclingParseV2DocumentBackend
14
15
  from docling.backend.html_backend import HTMLDocumentBackend
15
16
  from docling.backend.json.docling_json_backend import DoclingJSONBackend
@@ -61,6 +62,11 @@ class FormatOption(BaseModel):
61
62
  return self
62
63
 
63
64
 
65
+ class CsvFormatOption(FormatOption):
66
+ pipeline_cls: Type = SimplePipeline
67
+ backend: Type[AbstractDocumentBackend] = CsvDocumentBackend
68
+
69
+
64
70
  class ExcelFormatOption(FormatOption):
65
71
  pipeline_cls: Type = SimplePipeline
66
72
  backend: Type[AbstractDocumentBackend] = MsExcelDocumentBackend
@@ -113,6 +119,9 @@ class PdfFormatOption(FormatOption):
113
119
 
114
120
  def _get_default_option(format: InputFormat) -> FormatOption:
115
121
  format_to_default_options = {
122
+ InputFormat.CSV: FormatOption(
123
+ pipeline_cls=SimplePipeline, backend=CsvDocumentBackend
124
+ ),
116
125
  InputFormat.XLSX: FormatOption(
117
126
  pipeline_cls=SimplePipeline, backend=MsExcelDocumentBackend
118
127
  ),
@@ -4,3 +4,7 @@ class BaseError(RuntimeError):
4
4
 
5
5
  class ConversionError(BaseError):
6
6
  pass
7
+
8
+
9
+ class OperationNotAllowed(BaseError):
10
+ pass
@@ -8,6 +8,7 @@ from PIL import Image
8
8
  from pydantic import BaseModel, ConfigDict
9
9
 
10
10
  from docling.datamodel.pipeline_options import PictureDescriptionApiOptions
11
+ from docling.exceptions import OperationNotAllowed
11
12
  from docling.models.picture_description_base_model import PictureDescriptionBaseModel
12
13
 
13
14
  _log = logging.getLogger(__name__)
@@ -45,14 +46,20 @@ class ApiResponse(BaseModel):
45
46
  class PictureDescriptionApiModel(PictureDescriptionBaseModel):
46
47
  # elements_batch_size = 4
47
48
 
48
- def __init__(self, enabled: bool, options: PictureDescriptionApiOptions):
49
+ def __init__(
50
+ self,
51
+ enabled: bool,
52
+ enable_remote_services: bool,
53
+ options: PictureDescriptionApiOptions,
54
+ ):
49
55
  super().__init__(enabled=enabled, options=options)
50
56
  self.options: PictureDescriptionApiOptions
51
57
 
52
58
  if self.enabled:
53
- if options.url.host != "localhost":
54
- raise NotImplementedError(
55
- "The options try to connect to remote APIs which are not yet allowed."
59
+ if not enable_remote_services:
60
+ raise OperationNotAllowed(
61
+ "Connections to remote services is only allowed when set explicitly. "
62
+ "pipeline_options.enable_remote_services=True."
56
63
  )
57
64
 
58
65
  def _annotate_images(self, images: Iterable[Image.Image]) -> Iterable[str]:
@@ -22,6 +22,7 @@ class TesseractOcrModel(BaseOcrModel):
22
22
  self.scale = 3 # multiplier for 72 dpi == 216 dpi.
23
23
  self.reader = None
24
24
  self.osd_reader = None
25
+ self.script_readers: dict[str, tesserocr.PyTessBaseAPI] = {}
25
26
 
26
27
  if self.enabled:
27
28
  install_errmsg = (
@@ -57,8 +58,6 @@ class TesseractOcrModel(BaseOcrModel):
57
58
  _log.debug("Initializing TesserOCR: %s", tesseract_version)
58
59
  lang = "+".join(self.options.lang)
59
60
 
60
- self.script_readers: dict[str, tesserocr.PyTessBaseAPI] = {}
61
-
62
61
  if any([l.startswith("script/") for l in self._tesserocr_languages]):
63
62
  self.script_prefix = "script/"
64
63
  else:
@@ -61,6 +61,14 @@ class StandardPdfPipeline(PaginatedPipeline):
61
61
  artifacts_path: Optional[Path] = None
62
62
  if pipeline_options.artifacts_path is not None:
63
63
  artifacts_path = Path(pipeline_options.artifacts_path).expanduser()
64
+ elif settings.artifacts_path is not None:
65
+ artifacts_path = Path(settings.artifacts_path).expanduser()
66
+
67
+ if artifacts_path is not None and not artifacts_path.is_dir():
68
+ raise RuntimeError(
69
+ f"The value of {artifacts_path=} is not valid. "
70
+ "When defined, it must point to a folder containing all models required by the pipeline."
71
+ )
64
72
 
65
73
  self.keep_images = (
66
74
  self.pipeline_options.generate_page_images
@@ -201,6 +209,7 @@ class StandardPdfPipeline(PaginatedPipeline):
201
209
  ):
202
210
  return PictureDescriptionApiModel(
203
211
  enabled=self.pipeline_options.do_picture_description,
212
+ enable_remote_services=self.pipeline_options.enable_remote_services,
204
213
  options=self.pipeline_options.picture_description_options,
205
214
  )
206
215
  elif isinstance(
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "docling"
3
- version = "2.21.0" # DO NOT EDIT, updated automatically
3
+ version = "2.22.0" # DO NOT EDIT, updated automatically
4
4
  description = "SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications."
5
5
  authors = ["Christoph Auer <cau@zurich.ibm.com>", "Michele Dolfi <dol@zurich.ibm.com>", "Maxim Lysak <mly@zurich.ibm.com>", "Nikos Livathinos <nli@zurich.ibm.com>", "Ahmed Nassar <ahn@zurich.ibm.com>", "Panos Vagenas <pva@zurich.ibm.com>", "Peter Staar <taa@zurich.ibm.com>"]
6
6
  license = "MIT"
@@ -63,7 +63,7 @@ transformers = [
63
63
  {markers = "sys_platform != 'darwin' or platform_machine != 'x86_64'", version = "^4.46.0", optional = true },
64
64
  {markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'", version = "~4.42.0", optional = true }
65
65
  ]
66
- pillow = "^10.0.0"
66
+ pillow = ">=10.0.0,<12.0.0"
67
67
  tqdm = "^4.65.0"
68
68
 
69
69
  [tool.poetry.group.dev.dependencies]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes