llama-index postprocessor nvidia_rerank integration
Project description
LlamaIndex Postprocessor Integration: NVIDIA NIM Microservices
The llama-index-postprocessor-nvidia-rerank package contains LlamaIndex integrations for building applications with NVIDIA NIM microservices.
With the NVIDIA postprocessor connector, you can use a reranking NIM to rerank processed data.
NVIDIA NIM supports models across domains like chat, embedding, and re-ranking, from the community as well as from NVIDIA. Each model is optimized by NVIDIA to deliver the best performance on NVIDIA-accelerated infrastructure and is packaged as a NIM, an easy-to-use, prebuilt container that deploys anywhere using a single command on NVIDIA accelerated infrastructure. At their core, NIM microservices are containers that provide interactive APIs for running inference on an AI Model.
NVIDIA-hosted deployments are available on the NVIDIA API catalog to test each NIM. After you explore, you can download NIM microservices from the API catalog, which is included with the NVIDIA AI Enterprise license. The ability to run models on-premises or in your own cloud gives your enterprise ownership of your customizations and full control of your IP and AI application.
Use this documentation to learn how to install the llama-index-postprocessor-nvidia-rerank package
and use it to rerank parsed nodes.
Install the Package
To install the llama-index-postprocessor-nvidia-rerank package, run the following code.
pip install --upgrade llama-index llama-index-core llama-index-postprocessor-nvidia-rerank
Access the NVIDIA API Catalog
To get access to the NVIDIA API Catalog, do the following:
-
Create a free account on the NVIDIA API Catalog and log in.
-
Click your profile icon, and then click API Keys. The API Keys page appears.
-
Click Generate API Key. The Generate API Key window appears.
-
Click Generate Key. You should see API Key Granted, and your key appears.
-
Copy and save the key as
NVIDIA_API_KEY. -
To verify your key, use the following code.
import getpass import os if os.environ.get("NVIDIA_API_KEY", "").startswith("nvapi-"): print("Valid NVIDIA_API_KEY already in environment. Delete to reset") else: nvapi_key = getpass.getpass("NVAPI Key (starts with nvapi-): ") assert nvapi_key.startswith( "nvapi-" ), f"{nvapi_key[:5]}... is not a valid key" os.environ["NVIDIA_API_KEY"] = nvapi_key
You can now use your key to access endpoints on the NVIDIA API Catalog.
Work with the API Catalog
The following example loads and parses data, and then calls the reranking NIM.
from llama_index.postprocessor.nvidia_rerank import NVIDIARerank
from llama_index.core import Document
from llama_index.core import VectorStoreIndex, SimpleDirectoryReader
from llama_index.core.node_parser import SentenceSplitter, SimpleFileNodeParser
# Load your API key from an environment variable
my_key = os.environ["NVIDIA_API_KEY"]
# Load documents
documents = SimpleDirectoryReader("/path_to_your_data_folder").load_data()
# Set the reranker to use the API Catalog's default reranker model
rerank = NVIDIARerank()
# Parse data into nodes
parser = SentenceSplitter(separator="\n", chunk_size=200, chunk_overlap=0)
nodes = parser.get_nodes_from_documents(documents)
# Rerank the nodes
rerank.postprocess_nodes(nodes, query_str="What is the capital of France?")
Available Models
You can querying available_models to get a list of the models available with your API credentials.
For details about each model, refer to Models.
from llama_index.postprocessor.nvidia_rerank import NVIDIARerank
rerank.available_models
Self-host with NVIDIA NIM Microservices
When you are ready to deploy your AI application, you can self-host models with NVIDIA NIM. For more information, refer to NVIDIA AI Enterprise.
The following example code connects to a locally-hosted NIM Microservice.
from llama_index.postprocessor.nvidia_rerank import NVIDIARerank
# connect to a reranking NIM running at localhost:1976
rerank = NVIDIARerank(base_url="http://localhost:1976/v1")
Use Your Own Custom HTTP Client
If you need more control over HTTP settings, such as timeouts, proxies, and retries, you can use your own custom HTTP client.
Use the following code to pass an instance of your HTTP client to the NVIDIARerank initializer.
import httpx
from llama_index.postprocessor.nvidia_rerank import NVIDIARerank
# Create a custom httpx client with a 10-second timeout
custom_client = httpx.Client(timeout=10.0)
# Pass the custom client to the reranker
rerank = NVIDIARerank(
base_url="http://localhost:1976/v1", http_client=custom_client
)
Related Topics
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llama_index_postprocessor_nvidia_rerank-0.5.4.tar.gz.
File metadata
- Download URL: llama_index_postprocessor_nvidia_rerank-0.5.4.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51cedc70eb0ae733a369b072bdd7085dbe41c5959eb235f7dc1d62e9302950ec
|
|
| MD5 |
79eec545b70f874c82b3e582b3915fe9
|
|
| BLAKE2b-256 |
ad172500ead63674404b6ceb4895a02fbc5e2c20b50000213644694557521a5b
|
File details
Details for the file llama_index_postprocessor_nvidia_rerank-0.5.4-py3-none-any.whl.
File metadata
- Download URL: llama_index_postprocessor_nvidia_rerank-0.5.4-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0227d979cfb69fffe3120846fd0ee2dc6e6c112cfbafb3b2c5b451ff80f247d
|
|
| MD5 |
c361e364e1498a2c3a2164aa3cb58867
|
|
| BLAKE2b-256 |
bc3c8bab9003c8324d8ab3241816f03d55730e0369fe968acb9b67d6998186aa
|