nv-ingest 25.6.1__py3-none-any.whl → 25.6.4rc4__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 nv-ingest might be problematic. Click here for more details.
- nv_ingest/api/main.py +1 -1
- nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_runners.py +4 -0
- nv_ingest/version.py +0 -8
- {nv_ingest-25.6.1.dist-info → nv_ingest-25.6.4rc4.dist-info}/METADATA +3 -3
- {nv_ingest-25.6.1.dist-info → nv_ingest-25.6.4rc4.dist-info}/RECORD +8 -8
- {nv_ingest-25.6.1.dist-info → nv_ingest-25.6.4rc4.dist-info}/WHEEL +0 -0
- {nv_ingest-25.6.1.dist-info → nv_ingest-25.6.4rc4.dist-info}/licenses/LICENSE +0 -0
- {nv_ingest-25.6.1.dist-info → nv_ingest-25.6.4rc4.dist-info}/top_level.txt +0 -0
nv_ingest/api/main.py
CHANGED
|
@@ -22,7 +22,7 @@ logger = logging.getLogger(__name__)
|
|
|
22
22
|
app = FastAPI(
|
|
23
23
|
title="NV-Ingest Microservice",
|
|
24
24
|
description="Service for ingesting heterogenous datatypes",
|
|
25
|
-
version="25.6.
|
|
25
|
+
version="25.6.2",
|
|
26
26
|
contact={
|
|
27
27
|
"name": "NVIDIA Corporation",
|
|
28
28
|
"url": "https://nvidia.com",
|
|
@@ -331,6 +331,10 @@ def run_pipeline(
|
|
|
331
331
|
"""
|
|
332
332
|
if run_in_subprocess:
|
|
333
333
|
logger.info("Launching pipeline in Python subprocess using multiprocessing.")
|
|
334
|
+
if (ingest_config.ngc_api_key is None or ingest_config.ngc_api_key == "") and (
|
|
335
|
+
ingest_config.nvidia_build_api_key is None or ingest_config.nvidia_build_api_key == ""
|
|
336
|
+
):
|
|
337
|
+
logger.warning("NGC_API_KEY or NVIDIA_BUILD_API_KEY are not set. NIM Related functions will not work.")
|
|
334
338
|
|
|
335
339
|
ctx = multiprocessing.get_context("fork")
|
|
336
340
|
process = ctx.Process(
|
nv_ingest/version.py
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
import datetime
|
|
7
7
|
import os
|
|
8
|
-
import re
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
def get_version():
|
|
@@ -16,13 +15,6 @@ def get_version():
|
|
|
16
15
|
if not version:
|
|
17
16
|
version = f"{datetime.datetime.now().strftime('%Y.%m.%d')}"
|
|
18
17
|
|
|
19
|
-
# We only check this for dev, we assume for release the user knows what they are doing
|
|
20
|
-
if release_type != "release":
|
|
21
|
-
# Ensure the version is PEP 440 compatible
|
|
22
|
-
pep440_regex = r"^\d{4}\.\d{1,2}\.\d{1,2}$"
|
|
23
|
-
if not re.match(pep440_regex, version):
|
|
24
|
-
raise ValueError(f"Version '{version}' is not PEP 440 compatible")
|
|
25
|
-
|
|
26
18
|
# Construct the final version string
|
|
27
19
|
if release_type == "dev":
|
|
28
20
|
# If rev is not specified and defaults to 0 lets create a more meaningful development
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nv-ingest
|
|
3
|
-
Version: 25.6.
|
|
3
|
+
Version: 25.6.4rc4
|
|
4
4
|
Summary: Python module for multimodal document ingestion
|
|
5
5
|
Author-email: Jeremy Dyer <jdyer@nvidia.com>
|
|
6
6
|
License: Apache License
|
|
@@ -229,10 +229,10 @@ Requires-Dist: openai>=1.82.0
|
|
|
229
229
|
Requires-Dist: opentelemetry-api>=1.27.0
|
|
230
230
|
Requires-Dist: opentelemetry-exporter-otlp>=1.27.0
|
|
231
231
|
Requires-Dist: opentelemetry-sdk>=1.27.0
|
|
232
|
-
Requires-Dist: nv-ingest-api==25.6.
|
|
232
|
+
Requires-Dist: nv-ingest-api==25.6.2
|
|
233
233
|
Requires-Dist: pydantic>2.0.0
|
|
234
234
|
Requires-Dist: pydantic-settings>2.0.0
|
|
235
|
-
Requires-Dist: pypdfium2==4.30.
|
|
235
|
+
Requires-Dist: pypdfium2==4.30.0
|
|
236
236
|
Requires-Dist: pytest>=8.0.2
|
|
237
237
|
Requires-Dist: pytest-mock>=3.14.0
|
|
238
238
|
Requires-Dist: pytest-cov>=6.0.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
nv_ingest/__init__.py,sha256=vJLPeuxiIHqbxXPJSu9qe3MS-GPavbOUExyRq83DxxM,895
|
|
2
|
-
nv_ingest/version.py,sha256=
|
|
2
|
+
nv_ingest/version.py,sha256=MG7DxlzpnoJI56vqxwzs9WeMAEI3uPhfDiNLs6GN6wI,986
|
|
3
3
|
nv_ingest/api/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
4
|
-
nv_ingest/api/main.py,sha256=
|
|
4
|
+
nv_ingest/api/main.py,sha256=Z8ZfJ755XV3QES6T7fdqKCCpwCddOuortKghoJsJueE,1603
|
|
5
5
|
nv_ingest/api/v1/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
6
6
|
nv_ingest/api/v1/health.py,sha256=zqu-isMRjh4NveS4XWh5FaAZGPIlBVxpCOg3Uu8nUHQ,4746
|
|
7
7
|
nv_ingest/api/v1/ingest.py,sha256=LWk3LN4lBd3uO8h30EN42g3LHCVcO00avVd5ohVK7NI,19392
|
|
@@ -66,7 +66,7 @@ nv_ingest/framework/orchestration/ray/util/__init__.py,sha256=wQSlVx3T14ZgQAt-EP
|
|
|
66
66
|
nv_ingest/framework/orchestration/ray/util/pipeline/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
67
67
|
nv_ingest/framework/orchestration/ray/util/pipeline/pid_controller.py,sha256=AWyCFPP41vp1NOkO2urqm7vh-sTGKypJxwhdq8HxK6Q,50681
|
|
68
68
|
nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_builders.py,sha256=jMYnVe_0rb1OIO9mlB4LH3uXtgaXBbUG-rDPx6fe6J8,10456
|
|
69
|
-
nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_runners.py,sha256=
|
|
69
|
+
nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_runners.py,sha256=IKQHlEwe0xsjr4MgQJVL0UtnKha1qaoPFc08DF5QzMM,14351
|
|
70
70
|
nv_ingest/framework/orchestration/ray/util/pipeline/stage_builders.py,sha256=ZFJkeJNbDM_GsedUlfk2B8kI93L_MNK6gxPgeryZM6I,21463
|
|
71
71
|
nv_ingest/framework/orchestration/ray/util/system_tools/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
72
72
|
nv_ingest/framework/orchestration/ray/util/system_tools/memory.py,sha256=ICqY0LLB3hFTZk03iX5yffMSKFH2q_aQomtDVzS_mKw,2228
|
|
@@ -95,8 +95,8 @@ nv_ingest/framework/util/service/meta/ingest/__init__.py,sha256=wQSlVx3T14ZgQAt-
|
|
|
95
95
|
nv_ingest/framework/util/service/meta/ingest/ingest_service_meta.py,sha256=QS3uNxWBl5dIcmIpJKNe8_TLcTUuN2vcKyHeAwa-eSo,1589
|
|
96
96
|
nv_ingest/framework/util/telemetry/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
97
97
|
nv_ingest/framework/util/telemetry/global_stats.py,sha256=nq65pEEdiwjAfGiqsxG1CeQMC96O3CfQxsZuGFCY-ds,4554
|
|
98
|
-
nv_ingest-25.6.
|
|
99
|
-
nv_ingest-25.6.
|
|
100
|
-
nv_ingest-25.6.
|
|
101
|
-
nv_ingest-25.6.
|
|
102
|
-
nv_ingest-25.6.
|
|
98
|
+
nv_ingest-25.6.4rc4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
99
|
+
nv_ingest-25.6.4rc4.dist-info/METADATA,sha256=FL8Q5cnYKQKGxGuURlNuGhOOUYjGlBkRz7BzAebV4e8,15167
|
|
100
|
+
nv_ingest-25.6.4rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
101
|
+
nv_ingest-25.6.4rc4.dist-info/top_level.txt,sha256=sjb0ajIsgn3YgftSjZHlYO0HjYAIIhNuXG_AmywCvaU,10
|
|
102
|
+
nv_ingest-25.6.4rc4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|