nv-ingest 25.6.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 nv-ingest might be problematic. Click here for more details.

Files changed (102) hide show
  1. nv_ingest/__init__.py +20 -0
  2. nv_ingest/api/__init__.py +3 -0
  3. nv_ingest/api/main.py +45 -0
  4. nv_ingest/api/v1/__init__.py +3 -0
  5. nv_ingest/api/v1/health.py +114 -0
  6. nv_ingest/api/v1/ingest.py +454 -0
  7. nv_ingest/api/v1/metrics.py +29 -0
  8. nv_ingest/framework/__init__.py +3 -0
  9. nv_ingest/framework/orchestration/__init__.py +3 -0
  10. nv_ingest/framework/orchestration/ray/__init__.py +3 -0
  11. nv_ingest/framework/orchestration/ray/edges/__init__.py +3 -0
  12. nv_ingest/framework/orchestration/ray/edges/async_queue_edge.py +63 -0
  13. nv_ingest/framework/orchestration/ray/edges/ray_queue_edge.py +73 -0
  14. nv_ingest/framework/orchestration/ray/edges/threaded_queue_edge.py +72 -0
  15. nv_ingest/framework/orchestration/ray/examples/__init__.py +3 -0
  16. nv_ingest/framework/orchestration/ray/examples/pipeline_test_harness.py +408 -0
  17. nv_ingest/framework/orchestration/ray/examples/task_source_harness.py +63 -0
  18. nv_ingest/framework/orchestration/ray/examples/task_source_sink_harness.py +94 -0
  19. nv_ingest/framework/orchestration/ray/primitives/__init__.py +3 -0
  20. nv_ingest/framework/orchestration/ray/primitives/dataclasses.py +0 -0
  21. nv_ingest/framework/orchestration/ray/primitives/pipeline_monitor.py +239 -0
  22. nv_ingest/framework/orchestration/ray/primitives/pipeline_topology.py +591 -0
  23. nv_ingest/framework/orchestration/ray/primitives/ray_pipeline.py +1322 -0
  24. nv_ingest/framework/orchestration/ray/primitives/ray_stat_collector.py +346 -0
  25. nv_ingest/framework/orchestration/ray/stages/__init__.py +3 -0
  26. nv_ingest/framework/orchestration/ray/stages/extractors/__init__.py +3 -0
  27. nv_ingest/framework/orchestration/ray/stages/extractors/audio_extractor.py +82 -0
  28. nv_ingest/framework/orchestration/ray/stages/extractors/chart_extractor.py +92 -0
  29. nv_ingest/framework/orchestration/ray/stages/extractors/docx_extractor.py +81 -0
  30. nv_ingest/framework/orchestration/ray/stages/extractors/html_extractor.py +82 -0
  31. nv_ingest/framework/orchestration/ray/stages/extractors/image_extractor.py +85 -0
  32. nv_ingest/framework/orchestration/ray/stages/extractors/infographic_extractor.py +57 -0
  33. nv_ingest/framework/orchestration/ray/stages/extractors/pdf_extractor.py +113 -0
  34. nv_ingest/framework/orchestration/ray/stages/extractors/pptx_extractor.py +85 -0
  35. nv_ingest/framework/orchestration/ray/stages/extractors/table_extractor.py +90 -0
  36. nv_ingest/framework/orchestration/ray/stages/injectors/__init__.py +3 -0
  37. nv_ingest/framework/orchestration/ray/stages/injectors/metadata_injector.py +97 -0
  38. nv_ingest/framework/orchestration/ray/stages/meta/__init__.py +3 -0
  39. nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_edge_base.py +70 -0
  40. nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_sink_stage_base.py +82 -0
  41. nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_source_stage_base.py +59 -0
  42. nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_stage_base.py +652 -0
  43. nv_ingest/framework/orchestration/ray/stages/mutate/__init__.py +3 -0
  44. nv_ingest/framework/orchestration/ray/stages/mutate/image_dedup.py +85 -0
  45. nv_ingest/framework/orchestration/ray/stages/mutate/image_filter.py +84 -0
  46. nv_ingest/framework/orchestration/ray/stages/sinks/__init__.py +3 -0
  47. nv_ingest/framework/orchestration/ray/stages/sinks/default_drain.py +41 -0
  48. nv_ingest/framework/orchestration/ray/stages/sinks/message_broker_task_sink.py +268 -0
  49. nv_ingest/framework/orchestration/ray/stages/sources/__init__.py +3 -0
  50. nv_ingest/framework/orchestration/ray/stages/sources/message_broker_task_source.py +502 -0
  51. nv_ingest/framework/orchestration/ray/stages/storage/__init__.py +3 -0
  52. nv_ingest/framework/orchestration/ray/stages/storage/image_storage.py +98 -0
  53. nv_ingest/framework/orchestration/ray/stages/storage/store_embeddings.py +81 -0
  54. nv_ingest/framework/orchestration/ray/stages/telemetry/__init__.py +3 -0
  55. nv_ingest/framework/orchestration/ray/stages/telemetry/job_counter.py +66 -0
  56. nv_ingest/framework/orchestration/ray/stages/telemetry/otel_meter.py +3 -0
  57. nv_ingest/framework/orchestration/ray/stages/telemetry/otel_tracer.py +205 -0
  58. nv_ingest/framework/orchestration/ray/stages/transforms/__init__.py +3 -0
  59. nv_ingest/framework/orchestration/ray/stages/transforms/image_caption.py +81 -0
  60. nv_ingest/framework/orchestration/ray/stages/transforms/text_embed.py +81 -0
  61. nv_ingest/framework/orchestration/ray/stages/transforms/text_splitter.py +74 -0
  62. nv_ingest/framework/orchestration/ray/stages/utility/__init__.py +3 -0
  63. nv_ingest/framework/orchestration/ray/stages/utility/throughput_monitor.py +65 -0
  64. nv_ingest/framework/orchestration/ray/util/__init__.py +3 -0
  65. nv_ingest/framework/orchestration/ray/util/pipeline/__init__.py +3 -0
  66. nv_ingest/framework/orchestration/ray/util/pipeline/pid_controller.py +989 -0
  67. nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_builders.py +200 -0
  68. nv_ingest/framework/orchestration/ray/util/pipeline/pipeline_runners.py +376 -0
  69. nv_ingest/framework/orchestration/ray/util/pipeline/stage_builders.py +624 -0
  70. nv_ingest/framework/orchestration/ray/util/system_tools/__init__.py +3 -0
  71. nv_ingest/framework/orchestration/ray/util/system_tools/memory.py +59 -0
  72. nv_ingest/framework/orchestration/ray/util/system_tools/visualizers.py +309 -0
  73. nv_ingest/framework/schemas/__init__.py +0 -0
  74. nv_ingest/framework/schemas/framework_ingest_config_schema.py +54 -0
  75. nv_ingest/framework/schemas/framework_job_counter_schema.py +12 -0
  76. nv_ingest/framework/schemas/framework_message_broker_sink_schema.py +18 -0
  77. nv_ingest/framework/schemas/framework_message_broker_source_schema.py +19 -0
  78. nv_ingest/framework/schemas/framework_message_wrapper_schema.py +5 -0
  79. nv_ingest/framework/schemas/framework_metadata_injector_schema.py +15 -0
  80. nv_ingest/framework/schemas/framework_otel_meter_schema.py +16 -0
  81. nv_ingest/framework/schemas/framework_otel_tracer_schema.py +12 -0
  82. nv_ingest/framework/schemas/framework_processing_job_schema.py +25 -0
  83. nv_ingest/framework/schemas/framework_task_injection_schema.py +15 -0
  84. nv_ingest/framework/schemas/framework_vdb_task_sink_schema.py +112 -0
  85. nv_ingest/framework/util/__init__.py +3 -0
  86. nv_ingest/framework/util/flow_control/__init__.py +8 -0
  87. nv_ingest/framework/util/flow_control/filter_by_task.py +227 -0
  88. nv_ingest/framework/util/service/__init__.py +3 -0
  89. nv_ingest/framework/util/service/impl/__init__.py +3 -0
  90. nv_ingest/framework/util/service/impl/ingest/__init__.py +3 -0
  91. nv_ingest/framework/util/service/impl/ingest/redis_ingest_service.py +395 -0
  92. nv_ingest/framework/util/service/meta/__init__.py +3 -0
  93. nv_ingest/framework/util/service/meta/ingest/__init__.py +3 -0
  94. nv_ingest/framework/util/service/meta/ingest/ingest_service_meta.py +41 -0
  95. nv_ingest/framework/util/telemetry/__init__.py +3 -0
  96. nv_ingest/framework/util/telemetry/global_stats.py +145 -0
  97. nv_ingest/version.py +38 -0
  98. nv_ingest-25.6.0.dist-info/METADATA +266 -0
  99. nv_ingest-25.6.0.dist-info/RECORD +102 -0
  100. nv_ingest-25.6.0.dist-info/WHEEL +5 -0
  101. nv_ingest-25.6.0.dist-info/licenses/LICENSE +201 -0
  102. nv_ingest-25.6.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,3 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2024-25, NVIDIA CORPORATION & AFFILIATES.
2
+ # All rights reserved.
3
+ # SPDX-License-Identifier: Apache-2.0
@@ -0,0 +1,145 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES.
2
+ # All rights reserved.
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
5
+ import os
6
+ from collections import defaultdict
7
+ from collections import deque
8
+ from statistics import mean
9
+ from statistics import median
10
+
11
+ TELEMETRY_WINDOW_SIZE = os.getenv("TELEMETRY_WINDOW_SIZE", 100)
12
+
13
+
14
+ class GlobalStats:
15
+ """
16
+ Singleton class for maintaining global and job-specific statistics within a pipeline.
17
+
18
+ This class is designed to keep track of various statistics, including the number of submitted and completed jobs,
19
+ as well as dynamic statistics (mean and median) for job-specific metrics over a sliding window.
20
+
21
+ Usage
22
+ -----
23
+ global_stats = GlobalStats.get_instance()
24
+
25
+ # Setting and incrementing global statistics
26
+ global_stats.set_stat("submitted_jobs", 5)
27
+ global_stats.increment_stat("completed_jobs")
28
+
29
+ # Appending job-specific statistics
30
+ global_stats.append_job_stat("job_1", 100)
31
+ global_stats.append_job_stat("job_1", 200)
32
+
33
+ # Retrieving statistics
34
+ submitted_jobs = global_stats.get_stat("submitted_jobs")
35
+ job_1_mean = global_stats.get_job_stat("job_1", "mean")
36
+
37
+ Methods
38
+ -------
39
+ get_instance():
40
+ Returns the singleton instance of the GlobalStats class.
41
+
42
+ reset_all_stats():
43
+ Resets all global and job-specific statistics.
44
+
45
+ set_stat(stat_name, value):
46
+ Sets a specific global statistic to the given value.
47
+
48
+ increment_stat(stat_name, value=1):
49
+ Increments a specific global statistic by the given value (default is 1).
50
+
51
+ append_job_stat(job_name, value):
52
+ Appends a value to the job-specific statistics and updates the mean and median for the job.
53
+
54
+ get_stat(stat_name):
55
+ Retrieves the value of a specific global statistic.
56
+
57
+ get_job_stat(job_name, stat_name):
58
+ Retrieves the value of a specific job-specific statistic (mean or median).
59
+
60
+ get_all_stats():
61
+ Returns a dictionary containing all global and job-specific statistics.
62
+
63
+ Attributes
64
+ ----------
65
+ max_jobs : int
66
+ The maximum number of jobs to retain in the statistics window (default is 100).
67
+
68
+ stats : dict
69
+ Dictionary to hold global statistics.
70
+
71
+ job_stats : defaultdict
72
+ Dictionary to hold job-specific statistics, with each job having its own deque for values, mean, and median.
73
+
74
+ Example
75
+ -------
76
+ >>> global_stats = GlobalStats.get_instance()
77
+ >>> global_stats.increment_stat("submitted_jobs", 10)
78
+ >>> global_stats.append_job_stat("job_1", 50)
79
+ >>> global_stats.append_job_stat("job_1", 70)
80
+ >>> print(global_stats.get_stat("submitted_jobs"))
81
+ 10
82
+ >>> print(global_stats.get_job_stat("job_1", "mean"))
83
+ 60.0
84
+ >>> print(global_stats.get_job_stat("job_1", "median"))
85
+ 60.0
86
+ """
87
+
88
+ _instance = None
89
+
90
+ @staticmethod
91
+ def get_instance():
92
+ if GlobalStats._instance is None:
93
+ GlobalStats()
94
+ return GlobalStats._instance
95
+
96
+ def __init__(self):
97
+ if GlobalStats._instance is not None:
98
+ raise Exception("This class is a singleton. Use `GlobalStats.get_instance()`.")
99
+ GlobalStats._instance = self
100
+
101
+ self.max_jobs = TELEMETRY_WINDOW_SIZE
102
+
103
+ self.reset_all_stats()
104
+
105
+ def reset_all_stats(self):
106
+ self.stats = {
107
+ "submitted_jobs": 0,
108
+ "completed_jobs": 0,
109
+ "failed_jobs": 0,
110
+ }
111
+ self.job_stats = defaultdict(lambda: {"values": deque(), "mean": 0.0, "median": 0.0})
112
+
113
+ def set_stat(self, stat_name, value):
114
+ self.stats[stat_name] = value
115
+
116
+ def increment_stat(self, stat_name, value=1):
117
+ self.stats[stat_name] += value
118
+
119
+ def append_job_stat(self, job_name, value):
120
+ job_stat = self.job_stats[job_name]
121
+ values = job_stat["values"]
122
+
123
+ if len(values) >= self.max_jobs:
124
+ values.popleft()
125
+ values.append(value)
126
+
127
+ job_stat["mean"] = mean(values)
128
+ job_stat["median"] = median(values)
129
+
130
+ def get_stat(self, stat_name):
131
+ if stat_name not in self.stats:
132
+ raise ValueError(f"Key {stat_name} does not exist.")
133
+ return self.stats[stat_name]
134
+
135
+ def get_job_stat(self, job_name, stat_name):
136
+ return self.job_stats[job_name][stat_name]
137
+
138
+ def get_all_stats(self):
139
+ return {
140
+ "global_stats": self.stats.copy(),
141
+ "job_stats": {job_name: stats.copy() for job_name, stats in self.job_stats.items()},
142
+ }
143
+
144
+ def __str__(self):
145
+ return str(self.get_all_stats())
nv_ingest/version.py ADDED
@@ -0,0 +1,38 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES.
2
+ # All rights reserved.
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
5
+
6
+ import datetime
7
+ import os
8
+ import re
9
+
10
+
11
+ def get_version():
12
+ release_type = os.getenv("NV_INGEST_RELEASE_TYPE", "dev")
13
+ version = os.getenv("NV_INGEST_VERSION")
14
+ rev = os.getenv("NV_INGEST_REV", "0")
15
+
16
+ if not version:
17
+ version = f"{datetime.datetime.now().strftime('%Y.%m.%d')}"
18
+
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
+ # Construct the final version string
27
+ if release_type == "dev":
28
+ # If rev is not specified and defaults to 0 lets create a more meaningful development
29
+ # identifier that is pep440 compliant
30
+ if int(rev) == 0:
31
+ rev = datetime.datetime.now().strftime("%Y%m%d")
32
+ final_version = f"{version}.dev{rev}"
33
+ elif release_type == "release":
34
+ final_version = f"{version}.post{rev}" if int(rev) > 0 else version
35
+ else:
36
+ raise ValueError(f"Invalid release type: {release_type}")
37
+
38
+ return final_version
@@ -0,0 +1,266 @@
1
+ Metadata-Version: 2.4
2
+ Name: nv-ingest
3
+ Version: 25.6.0
4
+ Summary: Python module for multimodal document ingestion
5
+ Author-email: Jeremy Dyer <jdyer@nvidia.com>
6
+ License: Apache License
7
+ Version 2.0, January 2004
8
+ http://www.apache.org/licenses/
9
+
10
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
+
12
+ 1. Definitions.
13
+
14
+ "License" shall mean the terms and conditions for use, reproduction,
15
+ and distribution as defined by Sections 1 through 9 of this document.
16
+
17
+ "Licensor" shall mean the copyright owner or entity authorized by
18
+ the copyright owner that is granting the License.
19
+
20
+ "Legal Entity" shall mean the union of the acting entity and all
21
+ other entities that control, are controlled by, or are under common
22
+ control with that entity. For the purposes of this definition,
23
+ "control" means (i) the power, direct or indirect, to cause the
24
+ direction or management of such entity, whether by contract or
25
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
+ outstanding shares, or (iii) beneficial ownership of such entity.
27
+
28
+ "You" (or "Your") shall mean an individual or Legal Entity
29
+ exercising permissions granted by this License.
30
+
31
+ "Source" form shall mean the preferred form for making modifications,
32
+ including but not limited to software source code, documentation
33
+ source, and configuration files.
34
+
35
+ "Object" form shall mean any form resulting from mechanical
36
+ transformation or translation of a Source form, including but
37
+ not limited to compiled object code, generated documentation,
38
+ and conversions to other media types.
39
+
40
+ "Work" shall mean the work of authorship, whether in Source or
41
+ Object form, made available under the License, as indicated by a
42
+ copyright notice that is included in or attached to the work
43
+ (an example is provided in the Appendix below).
44
+
45
+ "Derivative Works" shall mean any work, whether in Source or Object
46
+ form, that is based on (or derived from) the Work and for which the
47
+ editorial revisions, annotations, elaborations, or other modifications
48
+ represent, as a whole, an original work of authorship. For the purposes
49
+ of this License, Derivative Works shall not include works that remain
50
+ separable from, or merely link (or bind by name) to the interfaces of,
51
+ the Work and Derivative Works thereof.
52
+
53
+ "Contribution" shall mean any work of authorship, including
54
+ the original version of the Work and any modifications or additions
55
+ to that Work or Derivative Works thereof, that is intentionally
56
+ submitted to Licensor for inclusion in the Work by the copyright owner
57
+ or by an individual or Legal Entity authorized to submit on behalf of
58
+ the copyright owner. For the purposes of this definition, "submitted"
59
+ means any form of electronic, verbal, or written communication sent
60
+ to the Licensor or its representatives, including but not limited to
61
+ communication on electronic mailing lists, source code control systems,
62
+ and issue tracking systems that are managed by, or on behalf of, the
63
+ Licensor for the purpose of discussing and improving the Work, but
64
+ excluding communication that is conspicuously marked or otherwise
65
+ designated in writing by the copyright owner as "Not a Contribution."
66
+
67
+ "Contributor" shall mean Licensor and any individual or Legal Entity
68
+ on behalf of whom a Contribution has been received by Licensor and
69
+ subsequently incorporated within the Work.
70
+
71
+ 2. Grant of Copyright License. Subject to the terms and conditions of
72
+ this License, each Contributor hereby grants to You a perpetual,
73
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
+ copyright license to reproduce, prepare Derivative Works of,
75
+ publicly display, publicly perform, sublicense, and distribute the
76
+ Work and such Derivative Works in Source or Object form.
77
+
78
+ 3. Grant of Patent License. Subject to the terms and conditions of
79
+ this License, each Contributor hereby grants to You a perpetual,
80
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
+ (except as stated in this section) patent license to make, have made,
82
+ use, offer to sell, sell, import, and otherwise transfer the Work,
83
+ where such license applies only to those patent claims licensable
84
+ by such Contributor that are necessarily infringed by their
85
+ Contribution(s) alone or by combination of their Contribution(s)
86
+ with the Work to which such Contribution(s) was submitted. If You
87
+ institute patent litigation against any entity (including a
88
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
89
+ or a Contribution incorporated within the Work constitutes direct
90
+ or contributory patent infringement, then any patent licenses
91
+ granted to You under this License for that Work shall terminate
92
+ as of the date such litigation is filed.
93
+
94
+ 4. Redistribution. You may reproduce and distribute copies of the
95
+ Work or Derivative Works thereof in any medium, with or without
96
+ modifications, and in Source or Object form, provided that You
97
+ meet the following conditions:
98
+
99
+ (a) You must give any other recipients of the Work or
100
+ Derivative Works a copy of this License; and
101
+
102
+ (b) You must cause any modified files to carry prominent notices
103
+ stating that You changed the files; and
104
+
105
+ (c) You must retain, in the Source form of any Derivative Works
106
+ that You distribute, all copyright, patent, trademark, and
107
+ attribution notices from the Source form of the Work,
108
+ excluding those notices that do not pertain to any part of
109
+ the Derivative Works; and
110
+
111
+ (d) If the Work includes a "NOTICE" text file as part of its
112
+ distribution, then any Derivative Works that You distribute must
113
+ include a readable copy of the attribution notices contained
114
+ within such NOTICE file, excluding those notices that do not
115
+ pertain to any part of the Derivative Works, in at least one
116
+ of the following places: within a NOTICE text file distributed
117
+ as part of the Derivative Works; within the Source form or
118
+ documentation, if provided along with the Derivative Works; or,
119
+ within a display generated by the Derivative Works, if and
120
+ wherever such third-party notices normally appear. The contents
121
+ of the NOTICE file are for informational purposes only and
122
+ do not modify the License. You may add Your own attribution
123
+ notices within Derivative Works that You distribute, alongside
124
+ or as an addendum to the NOTICE text from the Work, provided
125
+ that such additional attribution notices cannot be construed
126
+ as modifying the License.
127
+
128
+ You may add Your own copyright statement to Your modifications and
129
+ may provide additional or different license terms and conditions
130
+ for use, reproduction, or distribution of Your modifications, or
131
+ for any such Derivative Works as a whole, provided Your use,
132
+ reproduction, and distribution of the Work otherwise complies with
133
+ the conditions stated in this License.
134
+
135
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
136
+ any Contribution intentionally submitted for inclusion in the Work
137
+ by You to the Licensor shall be under the terms and conditions of
138
+ this License, without any additional terms or conditions.
139
+ Notwithstanding the above, nothing herein shall supersede or modify
140
+ the terms of any separate license agreement you may have executed
141
+ with Licensor regarding such Contributions.
142
+
143
+ 6. Trademarks. This License does not grant permission to use the trade
144
+ names, trademarks, service marks, or product names of the Licensor,
145
+ except as required for reasonable and customary use in describing the
146
+ origin of the Work and reproducing the content of the NOTICE file.
147
+
148
+ 7. Disclaimer of Warranty. Unless required by applicable law or
149
+ agreed to in writing, Licensor provides the Work (and each
150
+ Contributor provides its Contributions) on an "AS IS" BASIS,
151
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
+ implied, including, without limitation, any warranties or conditions
153
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
+ PARTICULAR PURPOSE. You are solely responsible for determining the
155
+ appropriateness of using or redistributing the Work and assume any
156
+ risks associated with Your exercise of permissions under this License.
157
+
158
+ 8. Limitation of Liability. In no event and under no legal theory,
159
+ whether in tort (including negligence), contract, or otherwise,
160
+ unless required by applicable law (such as deliberate and grossly
161
+ negligent acts) or agreed to in writing, shall any Contributor be
162
+ liable to You for damages, including any direct, indirect, special,
163
+ incidental, or consequential damages of any character arising as a
164
+ result of this License or out of the use or inability to use the
165
+ Work (including but not limited to damages for loss of goodwill,
166
+ work stoppage, computer failure or malfunction, or any and all
167
+ other commercial damages or losses), even if such Contributor
168
+ has been advised of the possibility of such damages.
169
+
170
+ 9. Accepting Warranty or Additional Liability. While redistributing
171
+ the Work or Derivative Works thereof, You may choose to offer,
172
+ and charge a fee for, acceptance of support, warranty, indemnity,
173
+ or other liability obligations and/or rights consistent with this
174
+ License. However, in accepting such obligations, You may act only
175
+ on Your own behalf and on Your sole responsibility, not on behalf
176
+ of any other Contributor, and only if You agree to indemnify,
177
+ defend, and hold each Contributor harmless for any liability
178
+ incurred by, or claims asserted against, such Contributor by reason
179
+ of your accepting any such warranty or additional liability.
180
+
181
+ END OF TERMS AND CONDITIONS
182
+
183
+ APPENDIX: How to apply the Apache License to your work.
184
+
185
+ To apply the Apache License to your work, attach the following
186
+ boilerplate notice, with the fields enclosed by brackets "[]"
187
+ replaced with your own identifying information. (Don't include
188
+ the brackets!) The text should be enclosed in the appropriate
189
+ comment syntax for the file format. We also recommend that a
190
+ file or class name and description of purpose be included on the
191
+ same "printed page" as the copyright notice for easier
192
+ identification within third-party archives.
193
+
194
+ Copyright [yyyy] [name of copyright owner]
195
+
196
+ Licensed under the Apache License, Version 2.0 (the "License");
197
+ you may not use this file except in compliance with the License.
198
+ You may obtain a copy of the License at
199
+
200
+ http://www.apache.org/licenses/LICENSE-2.0
201
+
202
+ Unless required by applicable law or agreed to in writing, software
203
+ distributed under the License is distributed on an "AS IS" BASIS,
204
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
+ See the License for the specific language governing permissions and
206
+ limitations under the License.
207
+
208
+ Project-URL: homepage, https://github.com/NVIDIA/nv-ingest
209
+ Project-URL: repository, https://github.com/NVIDIA/nv-ingest
210
+ Project-URL: documentation, https://docs.nvidia.com/nv-ingest
211
+ Classifier: Programming Language :: Python :: 3
212
+ Classifier: License :: OSI Approved :: MIT License
213
+ Classifier: Operating System :: OS Independent
214
+ Description-Content-Type: text/markdown
215
+ License-File: LICENSE
216
+ Requires-Dist: azure-core>=1.32.0
217
+ Requires-Dist: click>=8.1.7
218
+ Requires-Dist: diskcache>=5.6.3
219
+ Requires-Dist: fastapi>=0.115.6
220
+ Requires-Dist: fastparquet>=2024.11.0
221
+ Requires-Dist: fsspec>=2024.10.0
222
+ Requires-Dist: gunicorn
223
+ Requires-Dist: h11>=0.16.0
224
+ Requires-Dist: httpx>=0.28.1
225
+ Requires-Dist: isodate>=0.7.2
226
+ Requires-Dist: langdetect>=1.0.9
227
+ Requires-Dist: minio>=7.2.12
228
+ Requires-Dist: openai>=1.82.0
229
+ Requires-Dist: opentelemetry-api>=1.27.0
230
+ Requires-Dist: opentelemetry-exporter-otlp>=1.27.0
231
+ Requires-Dist: opentelemetry-sdk>=1.27.0
232
+ Requires-Dist: nv-ingest-api==25.6.0
233
+ Requires-Dist: pydantic>2.0.0
234
+ Requires-Dist: pydantic-settings>2.0.0
235
+ Requires-Dist: pypdfium2==4.30.1
236
+ Requires-Dist: pytest>=8.0.2
237
+ Requires-Dist: pytest-mock>=3.14.0
238
+ Requires-Dist: pytest-cov>=6.0.0
239
+ Requires-Dist: build>=1.2.2
240
+ Requires-Dist: python-docx>=1.1.2
241
+ Requires-Dist: python-dotenv>=1.0.1
242
+ Requires-Dist: python-pptx>=1.0.2
243
+ Requires-Dist: prometheus-client
244
+ Requires-Dist: torch>=2.4.1
245
+ Requires-Dist: ray[all]>=2.37.0
246
+ Requires-Dist: redis>=5.2.1
247
+ Requires-Dist: requests>=2.28.2
248
+ Requires-Dist: scikit-learn>=1.6.0
249
+ Requires-Dist: scipy>=1.15.1
250
+ Requires-Dist: setuptools>=78.1.1
251
+ Requires-Dist: tabulate>=0.9.0
252
+ Requires-Dist: torchvision
253
+ Requires-Dist: torchaudio
254
+ Requires-Dist: transformers>=4.47.0
255
+ Requires-Dist: tqdm>=4.67.1
256
+ Requires-Dist: uvicorn
257
+ Requires-Dist: pip
258
+ Requires-Dist: llama-index-embeddings-nvidia
259
+ Requires-Dist: opencv-python
260
+ Requires-Dist: pymilvus>=2.5.10
261
+ Requires-Dist: pymilvus[bulk_writer,model]
262
+ Requires-Dist: tritonclient
263
+ Requires-Dist: nvidia-riva-client==2.20.0
264
+ Requires-Dist: unstructured-client
265
+ Requires-Dist: markitdown
266
+ Dynamic: license-file
@@ -0,0 +1,102 @@
1
+ nv_ingest/__init__.py,sha256=vJLPeuxiIHqbxXPJSu9qe3MS-GPavbOUExyRq83DxxM,895
2
+ nv_ingest/version.py,sha256=Y9gMjlV_tnRSE3JbmS1rWIfVppM974_g0k30MRF3IQM,1352
3
+ nv_ingest/api/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
4
+ nv_ingest/api/main.py,sha256=59LGDy5inDqlmlzmvlGG-vhHTT_13Ix6dPd7ePG4lbc,1603
5
+ nv_ingest/api/v1/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
6
+ nv_ingest/api/v1/health.py,sha256=zqu-isMRjh4NveS4XWh5FaAZGPIlBVxpCOg3Uu8nUHQ,4746
7
+ nv_ingest/api/v1/ingest.py,sha256=LWk3LN4lBd3uO8h30EN42g3LHCVcO00avVd5ohVK7NI,19392
8
+ nv_ingest/api/v1/metrics.py,sha256=ZGVRApYLnzc2f2C7wRgGd7deqiXan-jxfA-33a16clY,981
9
+ nv_ingest/framework/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
10
+ nv_ingest/framework/orchestration/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
11
+ nv_ingest/framework/orchestration/ray/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
12
+ nv_ingest/framework/orchestration/ray/edges/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
13
+ nv_ingest/framework/orchestration/ray/edges/async_queue_edge.py,sha256=PQliU_kyGbO9o42njpb8FrDMLrbLqwZzmBNXifxyG5Y,2312
14
+ nv_ingest/framework/orchestration/ray/edges/ray_queue_edge.py,sha256=VFii2yxJuikimOxie3edKq5JN06g78AF8bdHSHVX8p8,2677
15
+ nv_ingest/framework/orchestration/ray/edges/threaded_queue_edge.py,sha256=N6NH4KgZJ60e_JkGRcSmfQtX37qtX4TMcavOR-n3heE,2549
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
18
+ nv_ingest/framework/orchestration/ray/examples/task_source_harness.py,sha256=Yt7uxThg7s8WuMiaHLKC8r1XAG7QixegfkT-juE5oNw,1953
19
+ nv_ingest/framework/orchestration/ray/examples/task_source_sink_harness.py,sha256=XkvsoIzH5ftXvAZ4ox7mxbx7ESVx6D8Xupcwbqgd52w,3277
20
+ nv_ingest/framework/orchestration/ray/primitives/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
21
+ nv_ingest/framework/orchestration/ray/primitives/dataclasses.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ nv_ingest/framework/orchestration/ray/primitives/pipeline_monitor.py,sha256=L8ENPiF-lxqhIXVEQwQD5CCqQMb710ynj5D_Y4ixGhs,11077
23
+ nv_ingest/framework/orchestration/ray/primitives/pipeline_topology.py,sha256=gc9gZNqPmnP76M-u8sQXyJd5aTSlyY_0CjLYNa-zvzk,29106
24
+ nv_ingest/framework/orchestration/ray/primitives/ray_pipeline.py,sha256=BEBLjkYFXIH396EUQcfuxhrWlIMs9i6z7YfeeqJ5cZg,59579
25
+ nv_ingest/framework/orchestration/ray/primitives/ray_stat_collector.py,sha256=yPIvOhxY42P-gf5dLkcPkfvfwL_I-ay0C8k5eNaU-VA,15811
26
+ nv_ingest/framework/orchestration/ray/stages/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
27
+ nv_ingest/framework/orchestration/ray/stages/extractors/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
28
+ nv_ingest/framework/orchestration/ray/stages/extractors/audio_extractor.py,sha256=KV4hvY0NTGG8CjZviTgcFLQzaH8WJJGkkb9PFYbROww,3417
29
+ nv_ingest/framework/orchestration/ray/stages/extractors/chart_extractor.py,sha256=tydluNNXfZYSo-0eqqafB59icF3SaeLXWcMrZ6OzlyQ,3998
30
+ nv_ingest/framework/orchestration/ray/stages/extractors/docx_extractor.py,sha256=tSa3Z4vK6sYJ6RBNMa7_FiuOwUaDUl0rTJ6agGbI5y0,3426
31
+ nv_ingest/framework/orchestration/ray/stages/extractors/html_extractor.py,sha256=fyr0oXokhuaGQrNu5rKyH_qNMD12AS1xPDxKgA26YHE,3426
32
+ nv_ingest/framework/orchestration/ray/stages/extractors/image_extractor.py,sha256=c-qlLGSizLOgKqH7wl_c8dGOVKYxLtXhZEHLXil4Jc4,3734
33
+ nv_ingest/framework/orchestration/ray/stages/extractors/infographic_extractor.py,sha256=dmgvzGMxVX81g7TpZO1ACnRh7sdtpc7YX5KK2QW26U4,2565
34
+ nv_ingest/framework/orchestration/ray/stages/extractors/pdf_extractor.py,sha256=BUVuYOCGyPdPpacVhL5rnvA56hydnBip7tPaWTXaT1c,4650
35
+ nv_ingest/framework/orchestration/ray/stages/extractors/pptx_extractor.py,sha256=ywPGA-3GNsbp3FWFsu04foumM6ZCccRrm73ijS7oY0g,3581
36
+ nv_ingest/framework/orchestration/ray/stages/extractors/table_extractor.py,sha256=EOcjyJYAB3TuXewZFld4shnGQUQ9VysjPrIWnmb8zuI,3893
37
+ nv_ingest/framework/orchestration/ray/stages/injectors/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
38
+ nv_ingest/framework/orchestration/ray/stages/injectors/metadata_injector.py,sha256=cdGbLBH0x-4uCdhr6JH_dMVFyBqPODQ5_WYO1otk8tI,4147
39
+ nv_ingest/framework/orchestration/ray/stages/meta/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
40
+ nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_edge_base.py,sha256=LnVqBJmpfCmcI-eJLbkwK-7SS-hpEp98P4iCRv_Zhb0,1726
41
+ nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_sink_stage_base.py,sha256=AhlZUbDK2Jckqnu8hVbJrckW8MsSixfmWc1bst9gRYk,3447
42
+ nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_source_stage_base.py,sha256=MtePbSiouDOtNYQ8bQI3hkHSXqkjN9r-NU2lXTz8paM,1793
43
+ nv_ingest/framework/orchestration/ray/stages/meta/ray_actor_stage_base.py,sha256=rAuEH8uq8-j4Ipkb1zMB8z_x_PMvxwO9LFN4iY7UXjE,28957
44
+ nv_ingest/framework/orchestration/ray/stages/mutate/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
45
+ nv_ingest/framework/orchestration/ray/stages/mutate/image_dedup.py,sha256=UepeDvH6Cfgm5rIylRx6uOxihS0OZ4Q1DGUrjUybNaY,3493
46
+ nv_ingest/framework/orchestration/ray/stages/mutate/image_filter.py,sha256=9ek5rVa4_GVdmVHGMJvbxacRSpIqVoUxgv28lzJwrTQ,3319
47
+ nv_ingest/framework/orchestration/ray/stages/sinks/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
48
+ nv_ingest/framework/orchestration/ray/stages/sinks/default_drain.py,sha256=0SQHJlFuXlP16YRWduX1fMKgjhUd7UhDAWQ8XZh4_0I,1471
49
+ nv_ingest/framework/orchestration/ray/stages/sinks/message_broker_task_sink.py,sha256=enylryvcPmzirpOjCahqYJbNSLsNvv1KpMnOzGqNZQQ,11509
50
+ nv_ingest/framework/orchestration/ray/stages/sources/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
51
+ nv_ingest/framework/orchestration/ray/stages/sources/message_broker_task_source.py,sha256=srDsgp8ExMHZNI76ch3iX7S0drMXmQ3NkWC_udnwqmo,20286
52
+ nv_ingest/framework/orchestration/ray/stages/storage/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
53
+ nv_ingest/framework/orchestration/ray/stages/storage/image_storage.py,sha256=6NkwQzseAnaj0Ptpr3oKvab2EnJdMwTjI2p4dS_HzsI,3901
54
+ nv_ingest/framework/orchestration/ray/stages/storage/store_embeddings.py,sha256=SMLHQElZkKldnjy0_VHIKS65DBAAtOhwhdoaFe1yb9I,3337
55
+ nv_ingest/framework/orchestration/ray/stages/telemetry/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
56
+ nv_ingest/framework/orchestration/ray/stages/telemetry/job_counter.py,sha256=a6-GKP9w02DsMsZk6Fi-MLTRCW2MI7dnO1N2JCQFUIo,2656
57
+ nv_ingest/framework/orchestration/ray/stages/telemetry/otel_meter.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
58
+ nv_ingest/framework/orchestration/ray/stages/telemetry/otel_tracer.py,sha256=53M8Xw84gcuRAeHbf4Z_ApLFX9Zkd1KSec_2k-wXl6c,7947
59
+ nv_ingest/framework/orchestration/ray/stages/transforms/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
60
+ nv_ingest/framework/orchestration/ray/stages/transforms/image_caption.py,sha256=OuqPmJmCqbg9k7roDivuvfYVTd05Nl9PMC0_E9PHgYw,3514
61
+ nv_ingest/framework/orchestration/ray/stages/transforms/text_embed.py,sha256=Hh7UXVZSS5LKt3uU5gwWIQ7SYqQrSN9tzFYw4CeUpUA,3535
62
+ nv_ingest/framework/orchestration/ray/stages/transforms/text_splitter.py,sha256=ulFDsTuz4oivvm_FKACfN1KH9X33mGH87LfD7rkaJnY,3090
63
+ nv_ingest/framework/orchestration/ray/stages/utility/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
64
+ nv_ingest/framework/orchestration/ray/stages/utility/throughput_monitor.py,sha256=MB27CkoNeuirN6CUHgjsC5Wh958NF7m_N7HE4VKfx3k,2264
65
+ nv_ingest/framework/orchestration/ray/util/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
66
+ nv_ingest/framework/orchestration/ray/util/pipeline/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
67
+ nv_ingest/framework/orchestration/ray/util/pipeline/pid_controller.py,sha256=AWyCFPP41vp1NOkO2urqm7vh-sTGKypJxwhdq8HxK6Q,50681
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=3aSYSxyunm-eKUYErDArQTHXSoNKlNJMUr9o5Ui6VTk,14037
70
+ nv_ingest/framework/orchestration/ray/util/pipeline/stage_builders.py,sha256=ZFJkeJNbDM_GsedUlfk2B8kI93L_MNK6gxPgeryZM6I,21463
71
+ nv_ingest/framework/orchestration/ray/util/system_tools/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
72
+ nv_ingest/framework/orchestration/ray/util/system_tools/memory.py,sha256=ICqY0LLB3hFTZk03iX5yffMSKFH2q_aQomtDVzS_mKw,2228
73
+ nv_ingest/framework/orchestration/ray/util/system_tools/visualizers.py,sha256=2oHZdO_3L1LGuzpyNmZBDh19n0E-APAaHk4MEwBwSHs,12895
74
+ nv_ingest/framework/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ nv_ingest/framework/schemas/framework_ingest_config_schema.py,sha256=t0CdiADwxpmQ9ZQrP_p6gjFb3K-21BeK_J8x_-T--m4,3776
76
+ nv_ingest/framework/schemas/framework_job_counter_schema.py,sha256=SxAq9iNI399p2CfEjWtXEfR_BbqUEOxdkf-Q7-acfw4,333
77
+ nv_ingest/framework/schemas/framework_message_broker_sink_schema.py,sha256=X-CqUauoi-gUG2Q1lqSuszIvb9o55PZkdcVT-gwfMmI,550
78
+ nv_ingest/framework/schemas/framework_message_broker_source_schema.py,sha256=63RnOUS4W8kzSRX92IJFytjJGZkLhDP3zNfeBP8qQqY,594
79
+ nv_ingest/framework/schemas/framework_message_wrapper_schema.py,sha256=blasvz9zT1KBwD-3oqK5NhPrvdmL5hPhr_3nazNyGqQ,83
80
+ nv_ingest/framework/schemas/framework_metadata_injector_schema.py,sha256=k0Zu9dE_Nbha1hXu6vG_1xuWMbaTTAnlFUlVHmlEXk8,363
81
+ nv_ingest/framework/schemas/framework_otel_meter_schema.py,sha256=JoOmiAefRT-4eXX-mZUkhNWyjoGTAnE0rG1NA45llV0,544
82
+ nv_ingest/framework/schemas/framework_otel_tracer_schema.py,sha256=EblvCsZWKrkkOWUK8HpxyW9n9o4Ka463FGuyboNL8_k,354
83
+ nv_ingest/framework/schemas/framework_processing_job_schema.py,sha256=v2IpPQcNba5-xcmPYeKDibC0ZMwVAtp4rmOOYM1kJH0,601
84
+ nv_ingest/framework/schemas/framework_task_injection_schema.py,sha256=31_515yb62V48Vbu1KeYmAljYTPwj9Ey7eVh3aWy54E,360
85
+ nv_ingest/framework/schemas/framework_vdb_task_sink_schema.py,sha256=gcd27IM2R2YlwegMOomZys3Ngt546Iqbh-qrd_qNJmc,3888
86
+ nv_ingest/framework/util/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
87
+ nv_ingest/framework/util/flow_control/__init__.py,sha256=blU7s6_dxTG2gHo6YadXslT0J-gkdl6dcCADZgpnjGc,215
88
+ nv_ingest/framework/util/flow_control/filter_by_task.py,sha256=EMGoNNPiDbfVDGzXfGAxoxllqhFPqRkh9VqCidxyibI,10893
89
+ nv_ingest/framework/util/service/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
90
+ nv_ingest/framework/util/service/impl/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
91
+ nv_ingest/framework/util/service/impl/ingest/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
92
+ nv_ingest/framework/util/service/impl/ingest/redis_ingest_service.py,sha256=KbzQFo7qVbCITiKYVPcGN0x4NI8piJy70Dz-8jf59Xs,15415
93
+ nv_ingest/framework/util/service/meta/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
94
+ nv_ingest/framework/util/service/meta/ingest/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
95
+ nv_ingest/framework/util/service/meta/ingest/ingest_service_meta.py,sha256=QS3uNxWBl5dIcmIpJKNe8_TLcTUuN2vcKyHeAwa-eSo,1589
96
+ nv_ingest/framework/util/telemetry/__init__.py,sha256=wQSlVx3T14ZgQAt-EPzEczQusXVW0W8yynnUaFFGE3s,143
97
+ nv_ingest/framework/util/telemetry/global_stats.py,sha256=nq65pEEdiwjAfGiqsxG1CeQMC96O3CfQxsZuGFCY-ds,4554
98
+ nv_ingest-25.6.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
99
+ nv_ingest-25.6.0.dist-info/METADATA,sha256=6BeDupHFKxUiz85z1KoOKZPKRnPm8lizGz0FlluFhxM,15164
100
+ nv_ingest-25.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
101
+ nv_ingest-25.6.0.dist-info/top_level.txt,sha256=sjb0ajIsgn3YgftSjZHlYO0HjYAIIhNuXG_AmywCvaU,10
102
+ nv_ingest-25.6.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+