nv-ingest 2025.8.18.dev20250818__py3-none-any.whl → 2025.8.20.dev20250820__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.
- nv_ingest/framework/orchestration/process/dependent_services.py +32 -10
- nv_ingest/framework/orchestration/process/execution.py +92 -94
- nv_ingest/framework/orchestration/process/lifecycle.py +98 -6
- nv_ingest/framework/orchestration/process/strategies.py +36 -4
- nv_ingest/framework/orchestration/process/termination.py +107 -0
- nv_ingest/framework/orchestration/ray/primitives/ray_pipeline.py +9 -15
- nv_ingest/pipeline/config/loaders.py +33 -2
- nv_ingest/pipeline/default_libmode_pipeline_impl.py +514 -0
- nv_ingest/pipeline/default_pipeline_impl.py +54 -56
- {nv_ingest-2025.8.18.dev20250818.dist-info → nv_ingest-2025.8.20.dev20250820.dist-info}/METADATA +1 -1
- {nv_ingest-2025.8.18.dev20250818.dist-info → nv_ingest-2025.8.20.dev20250820.dist-info}/RECORD +14 -12
- {nv_ingest-2025.8.18.dev20250818.dist-info → nv_ingest-2025.8.20.dev20250820.dist-info}/WHEEL +0 -0
- {nv_ingest-2025.8.18.dev20250818.dist-info → nv_ingest-2025.8.20.dev20250820.dist-info}/licenses/LICENSE +0 -0
- {nv_ingest-2025.8.18.dev20250818.dist-info → nv_ingest-2025.8.20.dev20250820.dist-info}/top_level.txt +0 -0
|
@@ -7,17 +7,17 @@
|
|
|
7
7
|
# pylint: disable=line-too-long
|
|
8
8
|
|
|
9
9
|
"""
|
|
10
|
-
Default pipeline implementation
|
|
10
|
+
Default pipeline implementation (runtime default).
|
|
11
11
|
|
|
12
|
-
This module
|
|
13
|
-
|
|
12
|
+
This module embeds the exact contents of config/default_pipeline.yaml so code can
|
|
13
|
+
load the default pipeline without reading the YAML file at runtime.
|
|
14
14
|
"""
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
DEFAULT_PIPELINE_YAML = """# Default Ingestion Pipeline Configuration
|
|
17
17
|
# This file replicates the static pipeline defined in pipeline_builders.py
|
|
18
18
|
|
|
19
|
-
name: "NVIngest default
|
|
20
|
-
description: "This is the default ingestion pipeline for NVIngest
|
|
19
|
+
name: "NVIngest default pipeline"
|
|
20
|
+
description: "This is the default ingestion pipeline for NVIngest"
|
|
21
21
|
stages:
|
|
22
22
|
# Source
|
|
23
23
|
- name: "source_stage"
|
|
@@ -26,20 +26,19 @@ stages:
|
|
|
26
26
|
actor: "nv_ingest.framework.orchestration.ray.stages.sources.message_broker_task_source:MessageBrokerTaskSourceStage"
|
|
27
27
|
config:
|
|
28
28
|
broker_client:
|
|
29
|
-
client_type: "
|
|
30
|
-
host: $MESSAGE_CLIENT_HOST|"
|
|
31
|
-
port: $MESSAGE_CLIENT_PORT|
|
|
29
|
+
client_type: $MESSAGE_CLIENT_TYPE|"redis"
|
|
30
|
+
host: $MESSAGE_CLIENT_HOST|"redis"
|
|
31
|
+
port: $MESSAGE_CLIENT_PORT|6379
|
|
32
32
|
task_queue: "ingest_task_queue"
|
|
33
33
|
poll_interval: 0.1
|
|
34
34
|
replicas:
|
|
35
|
-
min_replicas:
|
|
35
|
+
min_replicas: 1
|
|
36
36
|
max_replicas:
|
|
37
37
|
strategy: "static"
|
|
38
38
|
value: 1
|
|
39
39
|
static_replicas:
|
|
40
40
|
strategy: "static"
|
|
41
41
|
value: 1
|
|
42
|
-
runs_after: []
|
|
43
42
|
|
|
44
43
|
# Pre-processing
|
|
45
44
|
- name: "metadata_injector"
|
|
@@ -67,23 +66,23 @@ stages:
|
|
|
67
66
|
pdfium_config:
|
|
68
67
|
auth_token: $NGC_API_KEY|""
|
|
69
68
|
yolox_endpoints: [
|
|
70
|
-
$YOLOX_GRPC_ENDPOINT|"",
|
|
71
|
-
$YOLOX_HTTP_ENDPOINT|"
|
|
69
|
+
$YOLOX_GRPC_ENDPOINT|"page-elements:8001",
|
|
70
|
+
$YOLOX_HTTP_ENDPOINT|"http://page-elements:8000/v1/infer",
|
|
72
71
|
]
|
|
73
|
-
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|
|
|
72
|
+
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|grpc
|
|
74
73
|
nemoretriever_parse_config:
|
|
75
74
|
auth_token: $NGC_API_KEY|""
|
|
76
75
|
nemoretriever_parse_endpoints: [
|
|
77
76
|
$NEMORETRIEVER_PARSE_GRPC_ENDPOINT|"",
|
|
78
|
-
$NEMORETRIEVER_PARSE_HTTP_ENDPOINT|"
|
|
77
|
+
$NEMORETRIEVER_PARSE_HTTP_ENDPOINT|"http://nemoretriever-parse:8000/v1/chat/completions",
|
|
79
78
|
]
|
|
80
79
|
nemoretriever_parse_infer_protocol: $NEMORETRIEVER_PARSE_INFER_PROTOCOL|http
|
|
81
80
|
nemoretriever_parse_model_name: $NEMORETRIEVER_PARSE_MODEL_NAME|"nvidia/nemoretriever-parse"
|
|
82
81
|
yolox_endpoints: [
|
|
83
|
-
$YOLOX_GRPC_ENDPOINT|"",
|
|
84
|
-
$YOLOX_HTTP_ENDPOINT|"
|
|
82
|
+
$YOLOX_GRPC_ENDPOINT|"page-elements:8001",
|
|
83
|
+
$YOLOX_HTTP_ENDPOINT|"http://page-elements:8000/v1/infer",
|
|
85
84
|
]
|
|
86
|
-
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|
|
|
85
|
+
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|grpc
|
|
87
86
|
replicas:
|
|
88
87
|
min_replicas: 0
|
|
89
88
|
max_replicas:
|
|
@@ -101,10 +100,10 @@ stages:
|
|
|
101
100
|
config:
|
|
102
101
|
audio_extraction_config:
|
|
103
102
|
audio_endpoints: [
|
|
104
|
-
$AUDIO_GRPC_ENDPOINT|"
|
|
105
|
-
$AUDIO_HTTP_ENDPOINT|""
|
|
103
|
+
$AUDIO_GRPC_ENDPOINT|"audio:50051",
|
|
104
|
+
$AUDIO_HTTP_ENDPOINT|"",
|
|
106
105
|
]
|
|
107
|
-
function_id: $AUDIO_FUNCTION_ID|"
|
|
106
|
+
function_id: $AUDIO_FUNCTION_ID|""
|
|
108
107
|
audio_infer_protocol: $AUDIO_INFER_PROTOCOL|grpc
|
|
109
108
|
auth_token: $NGC_API_KEY|""
|
|
110
109
|
replicas:
|
|
@@ -123,10 +122,10 @@ stages:
|
|
|
123
122
|
config:
|
|
124
123
|
docx_extraction_config:
|
|
125
124
|
yolox_endpoints: [
|
|
126
|
-
$YOLOX_GRPC_ENDPOINT|"",
|
|
127
|
-
$YOLOX_HTTP_ENDPOINT|"
|
|
125
|
+
$YOLOX_GRPC_ENDPOINT|"page-elements:8001",
|
|
126
|
+
$YOLOX_HTTP_ENDPOINT|"",
|
|
128
127
|
]
|
|
129
|
-
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|
|
|
128
|
+
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|grpc
|
|
130
129
|
auth_token: $NGC_API_KEY|""
|
|
131
130
|
replicas:
|
|
132
131
|
min_replicas: 0
|
|
@@ -144,10 +143,10 @@ stages:
|
|
|
144
143
|
config:
|
|
145
144
|
pptx_extraction_config:
|
|
146
145
|
yolox_endpoints: [
|
|
147
|
-
$YOLOX_GRPC_ENDPOINT|"",
|
|
148
|
-
$YOLOX_HTTP_ENDPOINT|"
|
|
146
|
+
$YOLOX_GRPC_ENDPOINT|"page-elements:8001",
|
|
147
|
+
$YOLOX_HTTP_ENDPOINT|"http://page-elements:8000/v1/infer",
|
|
149
148
|
]
|
|
150
|
-
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|
|
|
149
|
+
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|grpc
|
|
151
150
|
auth_token: $NGC_API_KEY|""
|
|
152
151
|
replicas:
|
|
153
152
|
min_replicas: 0
|
|
@@ -165,10 +164,10 @@ stages:
|
|
|
165
164
|
config:
|
|
166
165
|
image_extraction_config:
|
|
167
166
|
yolox_endpoints: [
|
|
168
|
-
$YOLOX_GRPC_ENDPOINT|"",
|
|
169
|
-
$YOLOX_HTTP_ENDPOINT|"
|
|
167
|
+
$YOLOX_GRPC_ENDPOINT|"page-elements:8001",
|
|
168
|
+
$YOLOX_HTTP_ENDPOINT|"http://page-elements:8000/v1/infer",
|
|
170
169
|
]
|
|
171
|
-
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|
|
|
170
|
+
yolox_infer_protocol: $YOLOX_INFER_PROTOCOL|grpc
|
|
172
171
|
auth_token: $NGC_API_KEY|""
|
|
173
172
|
replicas:
|
|
174
173
|
min_replicas: 0
|
|
@@ -200,8 +199,8 @@ stages:
|
|
|
200
199
|
config:
|
|
201
200
|
endpoint_config:
|
|
202
201
|
ocr_endpoints: [
|
|
203
|
-
$OCR_GRPC_ENDPOINT|"
|
|
204
|
-
$OCR_HTTP_ENDPOINT|""
|
|
202
|
+
$OCR_GRPC_ENDPOINT|"ocr:8001",
|
|
203
|
+
$OCR_HTTP_ENDPOINT|"http://ocr:8000/v1/infer",
|
|
205
204
|
]
|
|
206
205
|
ocr_infer_protocol: $OCR_INFER_PROTOCOL|grpc
|
|
207
206
|
auth_token: $NGC_API_KEY|""
|
|
@@ -221,15 +220,15 @@ stages:
|
|
|
221
220
|
config:
|
|
222
221
|
endpoint_config:
|
|
223
222
|
yolox_endpoints: [
|
|
224
|
-
$YOLOX_TABLE_STRUCTURE_GRPC_ENDPOINT|"",
|
|
225
|
-
$YOLOX_TABLE_STRUCTURE_HTTP_ENDPOINT|"
|
|
223
|
+
$YOLOX_TABLE_STRUCTURE_GRPC_ENDPOINT|"table-structure:8001",
|
|
224
|
+
$YOLOX_TABLE_STRUCTURE_HTTP_ENDPOINT|"http://table-structure:8000/v1/infer",
|
|
226
225
|
]
|
|
227
|
-
yolox_infer_protocol: $YOLOX_TABLE_STRUCTURE_INFER_PROTOCOL|
|
|
226
|
+
yolox_infer_protocol: $YOLOX_TABLE_STRUCTURE_INFER_PROTOCOL|grpc
|
|
228
227
|
ocr_endpoints: [
|
|
229
|
-
$OCR_GRPC_ENDPOINT|"",
|
|
230
|
-
$OCR_HTTP_ENDPOINT|"
|
|
228
|
+
$OCR_GRPC_ENDPOINT|"ocr:8001",
|
|
229
|
+
$OCR_HTTP_ENDPOINT|"http://ocr:8000/v1/infer",
|
|
231
230
|
]
|
|
232
|
-
ocr_infer_protocol: $
|
|
231
|
+
ocr_infer_protocol: $OCR_INFER_PROTOCOL|grpc
|
|
233
232
|
auth_token: $NGC_API_KEY|""
|
|
234
233
|
replicas:
|
|
235
234
|
min_replicas: 0
|
|
@@ -248,15 +247,15 @@ stages:
|
|
|
248
247
|
config:
|
|
249
248
|
endpoint_config:
|
|
250
249
|
yolox_endpoints: [
|
|
251
|
-
$YOLOX_GRAPHIC_ELEMENTS_GRPC_ENDPOINT|"",
|
|
252
|
-
$YOLOX_GRAPHIC_ELEMENTS_HTTP_ENDPOINT|"
|
|
250
|
+
$YOLOX_GRAPHIC_ELEMENTS_GRPC_ENDPOINT|"graphic-elements:8001",
|
|
251
|
+
$YOLOX_GRAPHIC_ELEMENTS_HTTP_ENDPOINT|""
|
|
253
252
|
]
|
|
254
|
-
yolox_infer_protocol: $YOLOX_GRAPHIC_ELEMENTS_INFER_PROTOCOL|
|
|
253
|
+
yolox_infer_protocol: $YOLOX_GRAPHIC_ELEMENTS_INFER_PROTOCOL|grpc
|
|
255
254
|
ocr_endpoints: [
|
|
256
|
-
$OCR_GRPC_ENDPOINT|"",
|
|
257
|
-
$OCR_HTTP_ENDPOINT|"
|
|
255
|
+
$OCR_GRPC_ENDPOINT|"ocr:8001",
|
|
256
|
+
$OCR_HTTP_ENDPOINT|""
|
|
258
257
|
]
|
|
259
|
-
ocr_infer_protocol: $OCR_INFER_PROTOCOL|
|
|
258
|
+
ocr_infer_protocol: $OCR_INFER_PROTOCOL|grpc
|
|
260
259
|
auth_token: $NGC_API_KEY|""
|
|
261
260
|
replicas:
|
|
262
261
|
min_replicas: 0
|
|
@@ -318,7 +317,6 @@ stages:
|
|
|
318
317
|
actor: "nv_ingest.framework.orchestration.ray.stages.transforms.image_caption:ImageCaptionTransformStage"
|
|
319
318
|
config:
|
|
320
319
|
api_key: $NGC_API_KEY|""
|
|
321
|
-
endpoint_url: $VLM_CAPTION_ENDPOINT|"https://ai.api.nvidia.com/v1/gr/nvidia/llama-3.1-nemotron-nano-vl-8b-v1/chat/completions"
|
|
322
320
|
model_name: $VLM_CAPTION_MODEL_NAME|"nvidia/llama-3.1-nemotron-nano-vl-8b-v1"
|
|
323
321
|
prompt: "Caption the content of this image:"
|
|
324
322
|
replicas:
|
|
@@ -337,15 +335,15 @@ stages:
|
|
|
337
335
|
config:
|
|
338
336
|
api_key: $NGC_API_KEY|""
|
|
339
337
|
embedding_model: $EMBEDDING_NIM_MODEL_NAME|"nvidia/llama-3.2-nv-embedqa-1b-v2"
|
|
340
|
-
embedding_nim_endpoint: $EMBEDDING_NIM_ENDPOINT|"
|
|
338
|
+
embedding_nim_endpoint: $EMBEDDING_NIM_ENDPOINT|"http://embedding:8000/v1"
|
|
341
339
|
replicas:
|
|
342
340
|
min_replicas: 0
|
|
343
341
|
max_replicas:
|
|
344
342
|
strategy: "static"
|
|
345
|
-
value:
|
|
343
|
+
value: 4
|
|
346
344
|
static_replicas:
|
|
347
345
|
strategy: "static"
|
|
348
|
-
value:
|
|
346
|
+
value: 3
|
|
349
347
|
|
|
350
348
|
# Storage and Output
|
|
351
349
|
- name: "image_storage"
|
|
@@ -380,9 +378,10 @@ stages:
|
|
|
380
378
|
actor: "nv_ingest.framework.orchestration.ray.stages.sinks.message_broker_task_sink:MessageBrokerTaskSinkStage"
|
|
381
379
|
config:
|
|
382
380
|
broker_client:
|
|
383
|
-
client_type: "
|
|
384
|
-
host:
|
|
385
|
-
port:
|
|
381
|
+
client_type: $MESSAGE_CLIENT_TYPE|"redis"
|
|
382
|
+
host: $MESSAGE_CLIENT_HOST|localhost
|
|
383
|
+
port: $MESSAGE_CLIENT_PORT|6379
|
|
384
|
+
poll_interval: 0.1
|
|
386
385
|
replicas:
|
|
387
386
|
min_replicas: 1
|
|
388
387
|
max_replicas:
|
|
@@ -416,7 +415,7 @@ stages:
|
|
|
416
415
|
actor: "nv_ingest.framework.orchestration.ray.stages.sinks.default_drain:DefaultDrainSink"
|
|
417
416
|
config: {}
|
|
418
417
|
replicas:
|
|
419
|
-
min_replicas:
|
|
418
|
+
min_replicas: 1
|
|
420
419
|
max_replicas:
|
|
421
420
|
strategy: "static"
|
|
422
421
|
value: 1
|
|
@@ -500,11 +499,10 @@ edges:
|
|
|
500
499
|
queue_size: 32
|
|
501
500
|
|
|
502
501
|
# Pipeline Runtime Configuration
|
|
503
|
-
# These parameters control dynamic scaling and PID controller behavior
|
|
504
|
-
# All values can be overridden by environment variables from env_config.py
|
|
505
502
|
pipeline:
|
|
506
|
-
disable_dynamic_scaling: $INGEST_DISABLE_DYNAMIC_SCALING|
|
|
503
|
+
disable_dynamic_scaling: $INGEST_DISABLE_DYNAMIC_SCALING|false
|
|
507
504
|
dynamic_memory_threshold: $INGEST_DYNAMIC_MEMORY_THRESHOLD|0.75
|
|
505
|
+
static_memory_threshold: $INGEST_STATIC_MEMORY_THRESHOLD|0.75
|
|
508
506
|
pid_controller:
|
|
509
507
|
kp: $INGEST_DYNAMIC_MEMORY_KP|0.2
|
|
510
508
|
ki: $INGEST_DYNAMIC_MEMORY_KI|0.01
|
|
@@ -513,5 +511,5 @@ pipeline:
|
|
|
513
511
|
penalty_factor: $INGEST_DYNAMIC_MEMORY_PENALTY_FACTOR|0.1
|
|
514
512
|
error_boost_factor: $INGEST_DYNAMIC_MEMORY_ERROR_BOOST_FACTOR|1.5
|
|
515
513
|
rcm_memory_safety_buffer_fraction: $INGEST_DYNAMIC_MEMORY_RCM_MEMORY_SAFETY_BUFFER_FRACTION|0.15
|
|
516
|
-
launch_simple_broker:
|
|
514
|
+
launch_simple_broker: $INGEST_LAUNCH_SIMPLE_BROKER|false
|
|
517
515
|
"""
|
{nv_ingest-2025.8.18.dev20250818.dist-info → nv_ingest-2025.8.20.dev20250820.dist-info}/RECORD
RENAMED
|
@@ -12,10 +12,11 @@ nv_ingest/framework/orchestration/execution/__init__.py,sha256=wQSlVx3T14ZgQAt-E
|
|
|
12
12
|
nv_ingest/framework/orchestration/execution/helpers.py,sha256=-F8SZh7ISWtzJz6X1O2LQ133t-17Jxi8lL-NHz4rwj0,2818
|
|
13
13
|
nv_ingest/framework/orchestration/execution/options.py,sha256=Ms1t4591EIv4ZrMRdhsCYPgLnMVXJosG3MURCbPXUoA,3983
|
|
14
14
|
nv_ingest/framework/orchestration/process/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
15
|
-
nv_ingest/framework/orchestration/process/dependent_services.py,sha256=
|
|
16
|
-
nv_ingest/framework/orchestration/process/execution.py,sha256=
|
|
17
|
-
nv_ingest/framework/orchestration/process/lifecycle.py,sha256=
|
|
18
|
-
nv_ingest/framework/orchestration/process/strategies.py,sha256=
|
|
15
|
+
nv_ingest/framework/orchestration/process/dependent_services.py,sha256=ERf2M4O6pvbLDFrvayBHHL7M-FIwECeDEDTY3bi7MBg,2940
|
|
16
|
+
nv_ingest/framework/orchestration/process/execution.py,sha256=P1kzpYV23e4QYrKw9Td1TCZK3CK1ENVqqnI_axRCqBk,19814
|
|
17
|
+
nv_ingest/framework/orchestration/process/lifecycle.py,sha256=L5NDwnzSMQPGjqJDC8jC75L1YqWey-dtK8N_HgBzb0E,8001
|
|
18
|
+
nv_ingest/framework/orchestration/process/strategies.py,sha256=D7fdTPA7uuteoj6McA6hm1J5ArqoDdSZ7W6_ONDX7N0,7845
|
|
19
|
+
nv_ingest/framework/orchestration/process/termination.py,sha256=_aI2ZzCasGfqwu0fcvufOlr1BGAay_Noxq5pAu67gv4,3593
|
|
19
20
|
nv_ingest/framework/orchestration/ray/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
20
21
|
nv_ingest/framework/orchestration/ray/edges/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
21
22
|
nv_ingest/framework/orchestration/ray/edges/async_queue_edge.py,sha256=PQliU_kyGbO9o42njpb8FrDMLrbLqwZzmBNXifxyG5Y,2312
|
|
@@ -29,7 +30,7 @@ nv_ingest/framework/orchestration/ray/primitives/__init__.py,sha256=wQSlVx3T14Zg
|
|
|
29
30
|
nv_ingest/framework/orchestration/ray/primitives/dataclasses.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
31
|
nv_ingest/framework/orchestration/ray/primitives/pipeline_monitor.py,sha256=L8ENPiF-lxqhIXVEQwQD5CCqQMb710ynj5D_Y4ixGhs,11077
|
|
31
32
|
nv_ingest/framework/orchestration/ray/primitives/pipeline_topology.py,sha256=yd2sb_q_FbBLDWiYgdKRhpPVAIl26Wg8w3yelZ7c5zQ,15741
|
|
32
|
-
nv_ingest/framework/orchestration/ray/primitives/ray_pipeline.py,sha256=
|
|
33
|
+
nv_ingest/framework/orchestration/ray/primitives/ray_pipeline.py,sha256=t9lf6zTjl_P5pe8mW-5F5pbZoC5mlcvEn2RCaLn_3Tk,66521
|
|
33
34
|
nv_ingest/framework/orchestration/ray/primitives/ray_stat_collector.py,sha256=GGY6_i6_g5xTFzdo9Qmsu9i4knMTq6pJfgm-aaPEt_o,17226
|
|
34
35
|
nv_ingest/framework/orchestration/ray/stages/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
35
36
|
nv_ingest/framework/orchestration/ray/stages/extractors/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
@@ -105,14 +106,15 @@ nv_ingest/framework/util/service/meta/ingest/ingest_service_meta.py,sha256=QS3uN
|
|
|
105
106
|
nv_ingest/framework/util/telemetry/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
106
107
|
nv_ingest/framework/util/telemetry/global_stats.py,sha256=nq65pEEdiwjAfGiqsxG1CeQMC96O3CfQxsZuGFCY-ds,4554
|
|
107
108
|
nv_ingest/pipeline/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
108
|
-
nv_ingest/pipeline/
|
|
109
|
+
nv_ingest/pipeline/default_libmode_pipeline_impl.py,sha256=jcpTTC3yPt77EvNSyXxdnRryHLKQ2cMTMAo_0ZuLSNg,15450
|
|
110
|
+
nv_ingest/pipeline/default_pipeline_impl.py,sha256=Vlui2jk27DFD9lPX_FYLPzPGIfk1AqRvbcf5lGZeQPE,15145
|
|
109
111
|
nv_ingest/pipeline/ingest_pipeline.py,sha256=wHAJhqAM2s8nbY-8itVogmSU-yVN4PZONGWcKnhzgfg,17794
|
|
110
112
|
nv_ingest/pipeline/pipeline_schema.py,sha256=rLZZz2It2o2hVNWrZUJU8CarrqRei1fho3ZEMkkoBcg,17940
|
|
111
113
|
nv_ingest/pipeline/config/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
|
|
112
|
-
nv_ingest/pipeline/config/loaders.py,sha256=
|
|
114
|
+
nv_ingest/pipeline/config/loaders.py,sha256=75Yr9WYO7j7ghvKTnYLfZXQZEH3J3VEZo5J4TunC_Us,7590
|
|
113
115
|
nv_ingest/pipeline/config/replica_resolver.py,sha256=3zjh8gmepEYORFZRM4inq7GoBW0YL3gzUDiixUugjzQ,8899
|
|
114
|
-
nv_ingest-2025.8.
|
|
115
|
-
nv_ingest-2025.8.
|
|
116
|
-
nv_ingest-2025.8.
|
|
117
|
-
nv_ingest-2025.8.
|
|
118
|
-
nv_ingest-2025.8.
|
|
116
|
+
nv_ingest-2025.8.20.dev20250820.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
117
|
+
nv_ingest-2025.8.20.dev20250820.dist-info/METADATA,sha256=1ebyXL2wfHlv6B2_21Jvawg4mMmicYmf_GCKLMk5aNo,15061
|
|
118
|
+
nv_ingest-2025.8.20.dev20250820.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
119
|
+
nv_ingest-2025.8.20.dev20250820.dist-info/top_level.txt,sha256=sjb0ajIsgn3YgftSjZHlYO0HjYAIIhNuXG_AmywCvaU,10
|
|
120
|
+
nv_ingest-2025.8.20.dev20250820.dist-info/RECORD,,
|
{nv_ingest-2025.8.18.dev20250818.dist-info → nv_ingest-2025.8.20.dev20250820.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|