nv-ingest 25.7.1.dev20250701__py3-none-any.whl → 25.7.2.dev20250702__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.
@@ -63,7 +63,7 @@ def get_nim_service(env_var_prefix):
63
63
  "",
64
64
  )
65
65
  auth_token = os.environ.get(
66
- "NVIDIA_BUILD_API_KEY",
66
+ "NVIDIA_API_KEY",
67
67
  "",
68
68
  ) or os.environ.get(
69
69
  "NGC_API_KEY",
@@ -72,7 +72,7 @@ class PipelineCreationSchema(BaseModel):
72
72
 
73
73
  # API keys
74
74
  ngc_api_key: str = os.getenv("NGC_API_KEY", "")
75
- nvidia_build_api_key: str = os.getenv("NVIDIA_BUILD_API_KEY", "")
75
+ nvidia_api_key: str = os.getenv("NVIDIA_API_KEY", "")
76
76
 
77
77
  # Observability settings
78
78
  otel_exporter_otlp_endpoint: str = os.getenv("OTEL_EXPORTER_OTLP_ENDPOINT", "localhost:4317")
@@ -332,9 +332,9 @@ def run_pipeline(
332
332
  if run_in_subprocess:
333
333
  logger.info("Launching pipeline in Python subprocess using multiprocessing.")
334
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 == ""
335
+ ingest_config.nvidia_api_key is None or ingest_config.nvidia_api_key == ""
336
336
  ):
337
- logger.warning("NGC_API_KEY or NVIDIA_BUILD_API_KEY are not set. NIM Related functions will not work.")
337
+ logger.warning("NGC_API_KEY or NVIDIA_API_KEY are not set. NIM Related functions will not work.")
338
338
 
339
339
  ctx = multiprocessing.get_context("fork")
340
340
  process = ctx.Process(
@@ -105,7 +105,7 @@ def get_nim_service(env_var_prefix):
105
105
  "",
106
106
  )
107
107
  auth_token = os.environ.get(
108
- "NVIDIA_BUILD_API_KEY",
108
+ "NVIDIA_API_KEY",
109
109
  "",
110
110
  ) or os.environ.get(
111
111
  "NGC_API_KEY",
@@ -135,7 +135,7 @@ def get_audio_retrieval_service(env_var_prefix):
135
135
  "",
136
136
  )
137
137
  auth_token = os.environ.get(
138
- "NVIDIA_BUILD_API_KEY",
138
+ "NVIDIA_API_KEY",
139
139
  "",
140
140
  ) or os.environ.get(
141
141
  "NGC_API_KEY",
@@ -463,7 +463,7 @@ def add_text_splitter_stage(pipeline, default_cpu_count, stage_name="text_splitt
463
463
 
464
464
  def add_image_caption_stage(pipeline, default_cpu_count, stage_name="image_caption"):
465
465
  auth_token = os.environ.get(
466
- "NVIDIA_BUILD_API_KEY",
466
+ "NVIDIA_API_KEY",
467
467
  "",
468
468
  ) or os.environ.get(
469
469
  "NGC_API_KEY",
@@ -495,7 +495,7 @@ def add_image_caption_stage(pipeline, default_cpu_count, stage_name="image_capti
495
495
 
496
496
  def add_text_embedding_stage(pipeline, default_cpu_count, stage_name="text_embedding"):
497
497
  api_key = os.environ.get(
498
- "NVIDIA_BUILD_API_KEY",
498
+ "NVIDIA_API_KEY",
499
499
  "",
500
500
  ) or os.environ.get(
501
501
  "NGC_API_KEY",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nv-ingest
3
- Version: 25.7.1.dev20250701
3
+ Version: 25.7.2.dev20250702
4
4
  Summary: Python module for multimodal document ingestion
5
5
  Author-email: Jeremy Dyer <jdyer@nvidia.com>
6
6
  License: Apache License
@@ -14,7 +14,7 @@ nv_ingest/framework/orchestration/ray/edges/async_queue_edge.py,sha256=PQliU_kyG
14
14
  nv_ingest/framework/orchestration/ray/edges/ray_queue_edge.py,sha256=VFii2yxJuikimOxie3edKq5JN06g78AF8bdHSHVX8p8,2677
15
15
  nv_ingest/framework/orchestration/ray/edges/threaded_queue_edge.py,sha256=N6NH4KgZJ60e_JkGRcSmfQtX37qtX4TMcavOR-n3heE,2549
16
16
  nv_ingest/framework/orchestration/ray/examples/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
17
- nv_ingest/framework/orchestration/ray/examples/pipeline_test_harness.py,sha256=QOwnxSCuhmkk-Ak-k5ILkSIqDdk5umJJy4rQloIHNMM,16408
17
+ nv_ingest/framework/orchestration/ray/examples/pipeline_test_harness.py,sha256=PQxwXewJiHYfBSzONu7k-tUK5IjFjSNcflDAZ-F7W54,16402
18
18
  nv_ingest/framework/orchestration/ray/examples/task_source_harness.py,sha256=Yt7uxThg7s8WuMiaHLKC8r1XAG7QixegfkT-juE5oNw,1953
19
19
  nv_ingest/framework/orchestration/ray/examples/task_source_sink_harness.py,sha256=XkvsoIzH5ftXvAZ4ox7mxbx7ESVx6D8Xupcwbqgd52w,3277
20
20
  nv_ingest/framework/orchestration/ray/primitives/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
@@ -66,8 +66,8 @@ 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=d2-GS2tqk6JOFdw65CL1AwfjdUbkC_XxUuJH8Dy-aQ0,10456
69
- nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_runners.py,sha256=IKQHlEwe0xsjr4MgQJVL0UtnKha1qaoPFc08DF5QzMM,14351
70
- nv_ingest/framework/orchestration/ray/util/pipeline/stage_builders.py,sha256=zExjTOJOQbPuxTYoa54tYoIhvRQQWSkPJRVp47vYY64,21434
69
+ nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_runners.py,sha256=rJNJhSHAw4XdD9bT6Cvu1bLhg41-_Ry7pZnYcnJUaEY,14321
70
+ nv_ingest/framework/orchestration/ray/util/pipeline/stage_builders.py,sha256=4vmAmicNGfgRV4nvNLQ6kuOno2Fl6KnmPIV6gp4TnTs,21410
71
71
  nv_ingest/framework/orchestration/ray/util/pipeline/tools.py,sha256=LQVb8k9jURaxh2Ga44Js_XuYFCbeN4_nLgDmtExovQg,8026
72
72
  nv_ingest/framework/orchestration/ray/util/system_tools/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
73
73
  nv_ingest/framework/orchestration/ray/util/system_tools/memory.py,sha256=ICqY0LLB3hFTZk03iX5yffMSKFH2q_aQomtDVzS_mKw,2228
@@ -96,8 +96,8 @@ nv_ingest/framework/util/service/meta/ingest/__init__.py,sha256=wQSlVx3T14ZgQAt-
96
96
  nv_ingest/framework/util/service/meta/ingest/ingest_service_meta.py,sha256=QS3uNxWBl5dIcmIpJKNe8_TLcTUuN2vcKyHeAwa-eSo,1589
97
97
  nv_ingest/framework/util/telemetry/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
98
98
  nv_ingest/framework/util/telemetry/global_stats.py,sha256=nq65pEEdiwjAfGiqsxG1CeQMC96O3CfQxsZuGFCY-ds,4554
99
- nv_ingest-25.7.1.dev20250701.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
100
- nv_ingest-25.7.1.dev20250701.dist-info/METADATA,sha256=181FeqtkpSe2TvZp8K3RNT_O158PZKZ0RuHMKOHuFAk,15139
101
- nv_ingest-25.7.1.dev20250701.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
102
- nv_ingest-25.7.1.dev20250701.dist-info/top_level.txt,sha256=sjb0ajIsgn3YgftSjZHlYO0HjYAIIhNuXG_AmywCvaU,10
103
- nv_ingest-25.7.1.dev20250701.dist-info/RECORD,,
99
+ nv_ingest-25.7.2.dev20250702.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
100
+ nv_ingest-25.7.2.dev20250702.dist-info/METADATA,sha256=yPHIzXoxkLWg2Sp28Uf_ktcqn0zqzUyCfMS0fG5Pyxc,15139
101
+ nv_ingest-25.7.2.dev20250702.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
102
+ nv_ingest-25.7.2.dev20250702.dist-info/top_level.txt,sha256=sjb0ajIsgn3YgftSjZHlYO0HjYAIIhNuXG_AmywCvaU,10
103
+ nv_ingest-25.7.2.dev20250702.dist-info/RECORD,,