docling 2.58.0__py3-none-any.whl → 2.60.0__py3-none-any.whl
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.
Potentially problematic release.
This version of docling might be problematic. Click here for more details.
- docling/backend/msexcel_backend.py +6 -2
- docling/backend/pypdfium2_backend.py +4 -4
- docling/cli/main.py +19 -8
- docling/datamodel/base_models.py +2 -0
- docling/datamodel/pipeline_options.py +13 -10
- docling/datamodel/pipeline_options_vlm_model.py +1 -0
- docling/models/api_vlm_model.py +5 -3
- docling/models/layout_model.py +4 -0
- docling/models/picture_description_vlm_model.py +5 -1
- docling/models/vlm_models_inline/hf_transformers_model.py +13 -3
- docling/models/vlm_models_inline/mlx_model.py +9 -3
- docling/models/vlm_models_inline/nuextract_transformers_model.py +13 -3
- docling/models/vlm_models_inline/vllm_model.py +42 -8
- docling/pipeline/asr_pipeline.py +10 -3
- docling/pipeline/legacy_standard_pdf_pipeline.py +242 -0
- docling/pipeline/standard_pdf_pipeline.py +583 -96
- docling/pipeline/threaded_standard_pdf_pipeline.py +3 -645
- docling/utils/api_image_request.py +17 -6
- {docling-2.58.0.dist-info → docling-2.60.0.dist-info}/METADATA +9 -8
- {docling-2.58.0.dist-info → docling-2.60.0.dist-info}/RECORD +24 -23
- {docling-2.58.0.dist-info → docling-2.60.0.dist-info}/WHEEL +0 -0
- {docling-2.58.0.dist-info → docling-2.60.0.dist-info}/entry_points.txt +0 -0
- {docling-2.58.0.dist-info → docling-2.60.0.dist-info}/licenses/LICENSE +0 -0
- {docling-2.58.0.dist-info → docling-2.60.0.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,7 @@ import base64
|
|
|
2
2
|
import json
|
|
3
3
|
import logging
|
|
4
4
|
from io import BytesIO
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Dict, List, Optional, Tuple
|
|
6
6
|
|
|
7
7
|
import requests
|
|
8
8
|
from PIL import Image
|
|
@@ -21,7 +21,7 @@ def api_image_request(
|
|
|
21
21
|
timeout: float = 20,
|
|
22
22
|
headers: Optional[dict[str, str]] = None,
|
|
23
23
|
**params,
|
|
24
|
-
) -> str:
|
|
24
|
+
) -> Tuple[str, Optional[int]]:
|
|
25
25
|
img_io = BytesIO()
|
|
26
26
|
image.save(img_io, "PNG")
|
|
27
27
|
image_base64 = base64.b64encode(img_io.getvalue()).decode("utf-8")
|
|
@@ -60,7 +60,8 @@ def api_image_request(
|
|
|
60
60
|
|
|
61
61
|
api_resp = OpenAiApiResponse.model_validate_json(r.text)
|
|
62
62
|
generated_text = api_resp.choices[0].message.content.strip()
|
|
63
|
-
|
|
63
|
+
num_tokens = api_resp.usage.total_tokens
|
|
64
|
+
return generated_text, num_tokens
|
|
64
65
|
|
|
65
66
|
|
|
66
67
|
def api_image_request_streaming(
|
|
@@ -72,7 +73,7 @@ def api_image_request_streaming(
|
|
|
72
73
|
headers: Optional[dict[str, str]] = None,
|
|
73
74
|
generation_stoppers: list[GenerationStopper] = [],
|
|
74
75
|
**params,
|
|
75
|
-
) -> str:
|
|
76
|
+
) -> Tuple[str, Optional[int]]:
|
|
76
77
|
"""
|
|
77
78
|
Stream a chat completion from an OpenAI-compatible server (e.g., vLLM).
|
|
78
79
|
Parses SSE lines: 'data: {json}\\n\\n', terminated by 'data: [DONE]'.
|
|
@@ -150,6 +151,16 @@ def api_image_request_streaming(
|
|
|
150
151
|
_log.debug("Unexpected SSE chunk shape: %s", e)
|
|
151
152
|
piece = ""
|
|
152
153
|
|
|
154
|
+
# Try to extract token count
|
|
155
|
+
num_tokens = None
|
|
156
|
+
try:
|
|
157
|
+
if "usage" in obj:
|
|
158
|
+
usage = obj["usage"]
|
|
159
|
+
num_tokens = usage.get("total_tokens")
|
|
160
|
+
except Exception as e:
|
|
161
|
+
num_tokens = None
|
|
162
|
+
_log.debug("Usage key not included in response: %s", e)
|
|
163
|
+
|
|
153
164
|
if piece:
|
|
154
165
|
full_text.append(piece)
|
|
155
166
|
for stopper in generation_stoppers:
|
|
@@ -162,6 +173,6 @@ def api_image_request_streaming(
|
|
|
162
173
|
# closing the connection when we exit the 'with' block.
|
|
163
174
|
# vLLM/OpenAI-compatible servers will detect the client disconnect
|
|
164
175
|
# and abort the request server-side.
|
|
165
|
-
return "".join(full_text)
|
|
176
|
+
return "".join(full_text), num_tokens
|
|
166
177
|
|
|
167
|
-
return "".join(full_text)
|
|
178
|
+
return "".join(full_text), num_tokens
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: docling
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.60.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
|
Author-email: 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-Expression: MIT
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
26
|
Requires-Python: <4.0,>=3.9
|
|
26
27
|
Description-Content-Type: text/markdown
|
|
27
28
|
License-File: LICENSE
|
|
@@ -45,7 +46,7 @@ Requires-Dist: beautifulsoup4<5.0.0,>=4.12.3
|
|
|
45
46
|
Requires-Dist: pandas<3.0.0,>=2.1.4
|
|
46
47
|
Requires-Dist: marko<3.0.0,>=2.1.2
|
|
47
48
|
Requires-Dist: openpyxl<4.0.0,>=3.1.5
|
|
48
|
-
Requires-Dist: lxml<
|
|
49
|
+
Requires-Dist: lxml<7.0.0,>=4.0.0
|
|
49
50
|
Requires-Dist: pillow<12.0.0,>=10.0.0
|
|
50
51
|
Requires-Dist: tqdm<5.0.0,>=4.65.0
|
|
51
52
|
Requires-Dist: pluggy<2.0.0,>=1.0.0
|
|
@@ -62,15 +63,15 @@ Requires-Dist: ocrmac<2.0.0,>=1.0.0; sys_platform == "darwin" and extra == "ocrm
|
|
|
62
63
|
Provides-Extra: vlm
|
|
63
64
|
Requires-Dist: transformers<5.0.0,>=4.46.0; extra == "vlm"
|
|
64
65
|
Requires-Dist: accelerate<2.0.0,>=1.2.1; extra == "vlm"
|
|
65
|
-
Requires-Dist: mlx-vlm<1.0.0,>=0.3.0; (python_version >= "3.10" and sys_platform == "darwin" and platform_machine == "arm64") and extra == "vlm"
|
|
66
|
-
Requires-Dist: vllm<1.0.0,>=0.10.0; (python_version >= "3.10" and sys_platform == "linux" and platform_machine == "x86_64") and extra == "vlm"
|
|
66
|
+
Requires-Dist: mlx-vlm<1.0.0,>=0.3.0; (python_version >= "3.10" and python_version < "3.14" and sys_platform == "darwin" and platform_machine == "arm64") and extra == "vlm"
|
|
67
|
+
Requires-Dist: vllm<1.0.0,>=0.10.0; (python_version >= "3.10" and python_version < "3.14" and sys_platform == "linux" and platform_machine == "x86_64") and extra == "vlm"
|
|
67
68
|
Requires-Dist: qwen-vl-utils>=0.0.11; extra == "vlm"
|
|
68
69
|
Provides-Extra: rapidocr
|
|
69
|
-
Requires-Dist: rapidocr<4.0.0,>=3.3;
|
|
70
|
-
Requires-Dist: onnxruntime<2.0.0,>=1.7.0; extra == "rapidocr"
|
|
70
|
+
Requires-Dist: rapidocr<4.0.0,>=3.3; extra == "rapidocr"
|
|
71
|
+
Requires-Dist: onnxruntime<2.0.0,>=1.7.0; python_version < "3.14" and extra == "rapidocr"
|
|
71
72
|
Provides-Extra: asr
|
|
72
|
-
Requires-Dist: mlx-whisper>=0.4.3; (python_version >= "3.10" and sys_platform == "darwin" and platform_machine == "arm64") and extra == "asr"
|
|
73
|
-
Requires-Dist: openai-whisper>=20250625; extra == "asr"
|
|
73
|
+
Requires-Dist: mlx-whisper>=0.4.3; (python_version >= "3.10" and python_version < "3.14" and sys_platform == "darwin" and platform_machine == "arm64") and extra == "asr"
|
|
74
|
+
Requires-Dist: openai-whisper>=20250625; python_version < "3.14" and extra == "asr"
|
|
74
75
|
Dynamic: license-file
|
|
75
76
|
|
|
76
77
|
<p align="center">
|
|
@@ -13,12 +13,12 @@ docling/backend/docling_parse_v4_backend.py,sha256=tBJR0BbKFOIDKSngjVDu0BrzTj7qU
|
|
|
13
13
|
docling/backend/html_backend.py,sha256=m91kRxMhQ1w-7G6MHA9l01dgF8-YQNn8ZNx9lwG467M,52935
|
|
14
14
|
docling/backend/md_backend.py,sha256=_0ToiecsGwU4H4BBso4ar9TGJi8OTwSXjgmi66vSJVQ,23513
|
|
15
15
|
docling/backend/mets_gbs_backend.py,sha256=EA8sY6tbmGiysKGYPPZiNlK-i7Adn8bLTo-7Ym15hTU,12774
|
|
16
|
-
docling/backend/msexcel_backend.py,sha256
|
|
16
|
+
docling/backend/msexcel_backend.py,sha256=ujU8qoevNhLDWffihMlSYFVl7B3y_Uu5g-yispWyt8Q,22868
|
|
17
17
|
docling/backend/mspowerpoint_backend.py,sha256=71W_iV31Rggqn9UcMzXmsZ3QKMRpsBT8fCwdjsIIKAs,15109
|
|
18
18
|
docling/backend/msword_backend.py,sha256=zNJy-KM3Ia-L8IQ4sjYxATW4owFxbg2CK0rzke8y-7w,57451
|
|
19
19
|
docling/backend/noop_backend.py,sha256=EOPbD86FzZPX-K_DpNrJh0_lC0bZz--4DpG-OagDNGY,1688
|
|
20
20
|
docling/backend/pdf_backend.py,sha256=UovGV3RJG6qllzMPYzhDB6GID7buGV6w1uxl5dOAEw4,3563
|
|
21
|
-
docling/backend/pypdfium2_backend.py,sha256=
|
|
21
|
+
docling/backend/pypdfium2_backend.py,sha256=M1bo20H271txPogI4NgMuc7b-zHJ_BuPDJifEAfjQ88,14497
|
|
22
22
|
docling/backend/webvtt_backend.py,sha256=9xPcfWVLuqhEAFrkv8aU36qHnSgjeINZAXT_C9C6XJA,19165
|
|
23
23
|
docling/backend/docx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
docling/backend/docx/drawingml/utils.py,sha256=E9Iq8_052eEV5L1IN3ZqFX9eBidH56DKNlh6Tk7Do0I,3640
|
|
@@ -32,37 +32,37 @@ docling/backend/xml/jats_backend.py,sha256=_BWpQQg3SlsHAOOj0v2qRJoVqaQzL91GqN1tK
|
|
|
32
32
|
docling/backend/xml/uspto_backend.py,sha256=Tv4CE7V5_QwxTNJPl90CAd_mAbwaLGy8S6s6evh1Xow,70910
|
|
33
33
|
docling/chunking/__init__.py,sha256=h83TDs0AuOV6oEPLAPrn9dpGKiU-2Vg6IRNo4cv6GDA,346
|
|
34
34
|
docling/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
docling/cli/main.py,sha256=
|
|
35
|
+
docling/cli/main.py,sha256=T7MllU1e2zYoKekpEHPv7VdI4cypL6K5zzCfscHCRro,37404
|
|
36
36
|
docling/cli/models.py,sha256=zZBFQJAD7C5sespnYy5M__4qC_GyqAZ-QpfWtgPRDB0,6343
|
|
37
37
|
docling/cli/tools.py,sha256=QhtRxQG0TVrfsMqdv5i7J0_qQy1ZZyWYnHPwJl7b5oY,322
|
|
38
38
|
docling/datamodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
docling/datamodel/accelerator_options.py,sha256=wv6dOFTVAwr9onkE-0pfUqX_fDb6gX53iPPE6o8nKjI,2511
|
|
40
40
|
docling/datamodel/asr_model_specs.py,sha256=gQJkW7DaSPiOuW_0QoI5OzR1_DQGRkw7yQlrVJ4hyo0,14473
|
|
41
41
|
docling/datamodel/backend_options.py,sha256=2zSbJRtBmJ6Twywj8pLOKaHhklY85XaGXUmSLX_SfgQ,2473
|
|
42
|
-
docling/datamodel/base_models.py,sha256=
|
|
42
|
+
docling/datamodel/base_models.py,sha256=AmKIWnqjKo0WgUg6SsHJpN_et_B4rR6em0NEfJ1JKxU,12821
|
|
43
43
|
docling/datamodel/document.py,sha256=T9OogC1kIm0VDSC2ZFcFgWdcOjXzw5JvGr2y2hMlx3s,18795
|
|
44
44
|
docling/datamodel/extraction.py,sha256=7dgvtK5SuvgfB8LHAwS1FwrW1kcMQJuJG0ol8uAQgoQ,1323
|
|
45
45
|
docling/datamodel/layout_model_specs.py,sha256=GSkJ-Z_0PVgwWGi7C7TsxbzRjlrWS9ZrHJjHumv-Z5U,2339
|
|
46
|
-
docling/datamodel/pipeline_options.py,sha256=
|
|
46
|
+
docling/datamodel/pipeline_options.py,sha256=CWWpoPHnYEZBmd_lyZWvwuKrpyrRt4C_YoekjK5VlCc,11807
|
|
47
47
|
docling/datamodel/pipeline_options_asr_model.py,sha256=cLqtRHBr2kbTNXRJ1ZhFGiXIK7Nl9RFmz2Wd7tJF2Jg,2172
|
|
48
|
-
docling/datamodel/pipeline_options_vlm_model.py,sha256=
|
|
48
|
+
docling/datamodel/pipeline_options_vlm_model.py,sha256=JBdpfN3nASD5_DaAUe0tla20-Mia8fkveyNw7wVTJ4c,3131
|
|
49
49
|
docling/datamodel/settings.py,sha256=c0MTw6pO5be_BKxHKYl4SaBJAw_qL-aapxp-g5HHj1A,2084
|
|
50
50
|
docling/datamodel/vlm_model_specs.py,sha256=9TTmihDEFcI-TY1jJ2GTnTcrGa3bLg0e6anN4gPtFgU,10035
|
|
51
51
|
docling/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
-
docling/models/api_vlm_model.py,sha256=
|
|
52
|
+
docling/models/api_vlm_model.py,sha256=tZHXS_weqkhgVse1JbrpvjzAyCxW8br78eRYrlMSG3k,4321
|
|
53
53
|
docling/models/auto_ocr_model.py,sha256=nn_eQfNdGUclXKrB0nodHmCqgMUNUJzG3dLq0lhlNAI,5188
|
|
54
54
|
docling/models/base_model.py,sha256=QEbglxu3kT6aNq3x_5jY8T_KcD_Hhv9zr0-A4Mizhco,7252
|
|
55
55
|
docling/models/base_ocr_model.py,sha256=kT8TylASOpPlY60rIG6VL6_eLVsfg5KvEVnZHzDWtR0,8193
|
|
56
56
|
docling/models/code_formula_model.py,sha256=XRugm4EwifLRc-TrAk-glKlktJP-nAPneKh2EOovkJU,11308
|
|
57
57
|
docling/models/document_picture_classifier.py,sha256=9JvoWeH5uQBC7levjM8zptk7UT-b8EQnD-2EnxTjTT4,6202
|
|
58
58
|
docling/models/easyocr_model.py,sha256=sCWIe2xUYU1uK8g4qkPXh0OkUX-rV6BRd4Deb_na9Y4,7899
|
|
59
|
-
docling/models/layout_model.py,sha256=
|
|
59
|
+
docling/models/layout_model.py,sha256=_AGu_Fw_GsLJBQPAIWAblofj1GbSsbvtU-KlhrBdbu4,9309
|
|
60
60
|
docling/models/ocr_mac_model.py,sha256=y-1DSFDbACHpEwNTfQwzN9ab8r5j5rBFNPtQ48BzsrA,5396
|
|
61
61
|
docling/models/page_assemble_model.py,sha256=TvN1naez7dUodLxpUUBzpuMCpqZBTf6YSpewxgjzmrg,6323
|
|
62
62
|
docling/models/page_preprocessing_model.py,sha256=EmusNexws5ZmR93js_saVU0BedqZ_HIHQeY7lcf52tI,5284
|
|
63
63
|
docling/models/picture_description_api_model.py,sha256=o3EkV5aHW_6WzE_fdj_VRnNCrS_btclO_ZCLAUqrfl0,2377
|
|
64
64
|
docling/models/picture_description_base_model.py,sha256=kLthLhdlgwhootQ4_xhhcAk6A-vso5-qcsFJ3TcYfO0,2991
|
|
65
|
-
docling/models/picture_description_vlm_model.py,sha256=
|
|
65
|
+
docling/models/picture_description_vlm_model.py,sha256=7-reEy5gNxKgOB-VMiysemTwoasZhO5H8VyX4NUEY-4,4272
|
|
66
66
|
docling/models/rapid_ocr_model.py,sha256=JGeed1aNO64SYFgxlOifdut4fynUJyBuyyQrfuSno-4,13182
|
|
67
67
|
docling/models/readingorder_model.py,sha256=gnRFfJAXH-zKtQJws5Zb1_KCVvu_dAq9pgaDYQKCt9s,17236
|
|
68
68
|
docling/models/table_structure_model.py,sha256=7g_mFf1YzfF8PXQfefNu6XYZu7TzJAn86zKb6IEUdCg,12518
|
|
@@ -78,22 +78,23 @@ docling/models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
78
78
|
docling/models/utils/generation_utils.py,sha256=0ZfMBMbolHAWjdbMza8FbD4_jQ4VY6ReUa4gqVLwMoU,5365
|
|
79
79
|
docling/models/utils/hf_model_download.py,sha256=VlKna9tLIVOGQkIRQBXfDimPIIyeRV7cFCbuOVmFQiU,1092
|
|
80
80
|
docling/models/vlm_models_inline/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
81
|
-
docling/models/vlm_models_inline/hf_transformers_model.py,sha256=
|
|
82
|
-
docling/models/vlm_models_inline/mlx_model.py,sha256=
|
|
83
|
-
docling/models/vlm_models_inline/nuextract_transformers_model.py,sha256=
|
|
84
|
-
docling/models/vlm_models_inline/vllm_model.py,sha256=
|
|
81
|
+
docling/models/vlm_models_inline/hf_transformers_model.py,sha256=ylhdnY6A2nUkLQ2Ki-o-Jn8_kjO-JbYKdhnDXmGPB7Y,15047
|
|
82
|
+
docling/models/vlm_models_inline/mlx_model.py,sha256=_q1fVmVaEfnKTVp78djO4MSUA7LrF0JtCnMjTKnotT8,13749
|
|
83
|
+
docling/models/vlm_models_inline/nuextract_transformers_model.py,sha256=f-Djq2G6JLT-RE2LoEP3b2Q-LI33NsGM7Qxo4f6TkeA,10768
|
|
84
|
+
docling/models/vlm_models_inline/vllm_model.py,sha256=gIGZha3YCPBlJGgbjtqpRkiNrOqQszsOT3ZZZu1xbYo,11671
|
|
85
85
|
docling/pipeline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
|
-
docling/pipeline/asr_pipeline.py,sha256=
|
|
86
|
+
docling/pipeline/asr_pipeline.py,sha256=rzEMHkbZfTmCwl4mjMa2bWRlVmkajC5nKBaY0bT7qj0,16020
|
|
87
87
|
docling/pipeline/base_extraction_pipeline.py,sha256=GYrEz83IXv-tdIHjtNWxMBNczFwL8SZyf9vnPJ3STaI,2627
|
|
88
88
|
docling/pipeline/base_pipeline.py,sha256=NPMQDTyis-LgQ4SybY2f5AESZl5PxogF-FRQuCDckXg,12748
|
|
89
89
|
docling/pipeline/extraction_vlm_pipeline.py,sha256=veUOTe8nGdnduZKaGn1RRb-NfU1H6t_EN4QAsb022Zg,8260
|
|
90
|
+
docling/pipeline/legacy_standard_pdf_pipeline.py,sha256=dFTFpwwgeELNCsstHvhQe7tD4REmOXLoAIFGpGTVo3c,10491
|
|
90
91
|
docling/pipeline/simple_pipeline.py,sha256=FSL_ucDd9k0D9DjNKMUkyCULIU8a057dvWfLEPmAc2A,2287
|
|
91
|
-
docling/pipeline/standard_pdf_pipeline.py,sha256=
|
|
92
|
-
docling/pipeline/threaded_standard_pdf_pipeline.py,sha256=
|
|
92
|
+
docling/pipeline/standard_pdf_pipeline.py,sha256=pPtimWbR7Iww7u2qIWd4vy6Ruc3Dk9wWS7aXqkeP-7c,31446
|
|
93
|
+
docling/pipeline/threaded_standard_pdf_pipeline.py,sha256=SO2ezB6QKpYKCJ1STctJNPoPyRQyf2jTksO1CRSukGc,200
|
|
93
94
|
docling/pipeline/vlm_pipeline.py,sha256=HSbSoGZyy4eIK8eOL2g_NymrHg8r-DrB2buggJQAqHU,16189
|
|
94
95
|
docling/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
96
|
docling/utils/accelerator_utils.py,sha256=DSajLxVx1JEVT0zt5de26llciLNlVfIDfSa2zYCFJzQ,2909
|
|
96
|
-
docling/utils/api_image_request.py,sha256=
|
|
97
|
+
docling/utils/api_image_request.py,sha256=HO-FrZ8kOqMMRVJSIsH3apoNoDKM2l7xrC8NfWAEgFQ,5876
|
|
97
98
|
docling/utils/export.py,sha256=VwVUnYDk3mhGmISDbVm306fwpGNnoojouStBD4UajXI,4673
|
|
98
99
|
docling/utils/glm_utils.py,sha256=TKOWQqWAHsX_w4fvoAA7_2xCi_urhnp1DsmjY8_sk5w,12274
|
|
99
100
|
docling/utils/layout_postprocessor.py,sha256=bwDIhgUg5rKianzccGPTotTjqjkWtIQSoZwgKio8YC4,25124
|
|
@@ -104,9 +105,9 @@ docling/utils/orientation.py,sha256=jTyLxyT31FlOodZoBMlADHNQK2lAWKYVs5z7pXd_6Cg,
|
|
|
104
105
|
docling/utils/profiling.py,sha256=YaMGoB9MMZpagF9mb5ndoHj8Lpb9aIdb7El-Pl7IcFs,1753
|
|
105
106
|
docling/utils/utils.py,sha256=kJtIYuzXeOyJHYlxmLAo7dGM5rEsDa1i84qEsUj1nio,1908
|
|
106
107
|
docling/utils/visualization.py,sha256=tY2ylE2aiQKkmzlSLnFW-HTfFyqUUMguW18ldd1PLfo,2868
|
|
107
|
-
docling-2.
|
|
108
|
-
docling-2.
|
|
109
|
-
docling-2.
|
|
110
|
-
docling-2.
|
|
111
|
-
docling-2.
|
|
112
|
-
docling-2.
|
|
108
|
+
docling-2.60.0.dist-info/licenses/LICENSE,sha256=mBb7ErEcM8VS9OhiGHnQ2kk75HwPhr54W1Oiz3965MY,1088
|
|
109
|
+
docling-2.60.0.dist-info/METADATA,sha256=OzgtvKwzf5G11YSPtypooStfqsna-huopIphSFZTeC8,11805
|
|
110
|
+
docling-2.60.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
111
|
+
docling-2.60.0.dist-info/entry_points.txt,sha256=hzVlbeE0aMSTQ9S0-NTYN0Hmgsn6qL_EA2qX4UbkAuY,149
|
|
112
|
+
docling-2.60.0.dist-info/top_level.txt,sha256=vkIywP-USjFyYo1AIRQbWQQaL3xB5jf8vkCYdTIfNic,8
|
|
113
|
+
docling-2.60.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|