Use the NV-Ingest Python API
The NV-Ingest Python API provides a simple and flexible interface for processing and extracting information from various document types, including PDFs.
Tip
There is a Jupyter notebook available to help you get started with the Python API. For more information, refer to Python Client Quick Start Guide.
Summary of Key Methods
The main class in the nv-ingest API is Ingestor
.
The Ingestor
class provides an interface for building, managing, and running data ingestion jobs, enabling for chainable task additions and job state tracking.
The following table describes methods of the Ingestor
class.
Method | Description |
---|---|
files |
Add document paths for processing. |
load |
Ensure files are locally accessible (downloads if needed). |
extract |
Add an extraction task (text, tables, charts). |
split |
Split documents into smaller sections for processing. For more information, refer to Split Documents. |
embed |
Generate embeddings from extracted content. |
caption |
Extract captions from images within the document. |
ingest |
Submit jobs and retrieve results synchronously. |
Quick Start: Extracting PDFs
The following example demonstrates how to initialize Ingestor
, load a PDF file, and extract its contents.
The extract
method enables different types of data to be extracted.
Extract a Single PDF
Use the following code to extract a single PDF file.
from nv_ingest_client.client.interface import Ingestor
# Initialize Ingestor with a local PDF file
ingestor = Ingestor().files("path/to/document.pdf")
# Extract text, tables, and images
result = ingestor.extract().ingest()
print(result)
Extract Multiple PDFs
Use the following code to process multiple PDFs at one time.
ingestor = Ingestor().files(["path/to/doc1.pdf", "path/to/doc2.pdf"])
# Extract content from all PDFs
result = ingestor.extract().ingest()
for doc in result:
print(doc)
Extract Specific Elements from PDFs
By default, the extract
method extracts all supported content types.
You can customize the extraction behavior by using the following code.
ingestor = ingestor.extract(
extract_text=True, # Extract text
text_depth="page",
extract_tables=False, # Skip table extraction
extract_charts=True, # Extract charts
extract_infographics=True, # Extract infographic images
extract_images=False # Skip image extraction
)
Extract Non-standard Document Types
NV-Ingest also supports extracting text from .md
, .sh
, and .html
files
ingestor = Ingestor().files(["path/to/doc1.md", "path/to/doc2.html"])
ingestor = ingestor.extract(
extract_text=True, # Only extract text
extract_tables=False,
extract_charts=False,
extract_infographics=False,
extract_images=False
)
result = ingestor.ingest()
Extract with Custom Document Type
Use the following code to specify a custom document type for extraction.
ingestor = ingestor.extract(document_type="pdf")
Track Job Progress
For large document batches, you can enable a progress bar by setting show_progress
to true.
Use the following code.
result = ingestor.extract().ingest(show_progress=True)
Extract Captions from Images
The caption
method generates image captions by using a vision-language model.
This can be used to describe images extracted from documents.
Note
The default model used by caption
is meta/llama-3.2-11b-vision-instruct
.
ingestor = ingestor.caption()
To specify a different API endpoint, pass additional parameters to caption
.
ingestor = ingestor.caption(
endpoint_url="https://ai.api.nvidia.com/v1/gr/meta/llama-3.2-11b-vision-instruct/chat/completions",
model_name="meta/llama-3.2-11b-vision-instruct",
api_key="nvapi-"
)
Extract Embeddings
The embed
method in NV-Ingest generates text embeddings for document content.
ingestor = ingestor.embed()
Note
By default, embed
uses the llama-3.2-nv-embedqa-1b-v2 model.
To use a different embedding model, such as nv-embedqa-e5-v5, specify a different model_name
and endpoint_url
.
ingestor = ingestor.embed(
endpoint_url="https://integrate.api.nvidia.com/v1",
model_name="nvidia/nv-embedqa-e5-v5",
api_key="nvapi-"
)