llama-index postprocessor nvidia_rerank integration
Project description
NVIDIA NIMs
The llama-index-postprocessor-nvidia-rerank
package contains LlamaIndex integrations building applications with models on
NVIDIA NIM inference microservice. NIM supports models across domains like chat, embedding, and re-ranking models
from the community as well as NVIDIA. These models are optimized by NVIDIA to deliver the best performance on NVIDIA
accelerated infrastructure and deployed as a NIM, an easy-to-use, prebuilt containers that deploy anywhere using a single
command on NVIDIA accelerated infrastructure.
NVIDIA hosted deployments of NIMs are available to test on the NVIDIA API catalog. After testing, NIMs can be exported from NVIDIA’s API catalog using the NVIDIA AI Enterprise license and run on-premises or in the cloud, giving enterprises ownership and full control of their IP and AI application.
NIMs are packaged as container images on a per model basis and are distributed as NGC container images through the NVIDIA NGC Catalog. At their core, NIMs provide easy, consistent, and familiar APIs for running inference on an AI model.
LlamaIndex Postprocessor Integration: Nvidia_Rerank
Below is an example on how to use some common functionality surrounding text-generative and embedding models
Installation
pip install --upgrade llama-index llama-index-core llama-index-postprocessor-nvidia-rerank
Setup
To get started:
-
Create a free account with NVIDIA, which hosts NVIDIA AI Foundation models.
-
Select the
Retrieval
tab, then select your model of choice. -
Under
Input
select thePython
tab, and clickGet API Key
. Then clickGenerate Key
. -
Copy and save the generated key as
NVIDIA_API_KEY
. From there, you should have access to the endpoints.
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
Working with NVIDIA API Catalog
from llama_index.postprocessor.nvidia_rerank import NVIDIARerank
rerank = NVIDIARerank()
Working with NVIDIA NIMs
from llama_index.postprocessor.nvidia_rerank import NVIDIARerank
# connect to an reranking NIM running at localhost:1976
rerank = NVIDIARerank(base_url="http://localhost:1976/v1")
Supported models
Querying available_models
will still give you all of the other models offered by your API credentials.
from llama_index.postprocessor.nvidia_rerank import NVIDIARerank
rerank.available_models
To find out more about a specific model, please navigate to the NVIDIA NIM section of ai.nvidia.com as linked here.
Reranking
Below is an example:
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 documents
documents = SimpleDirectoryReader("/path_to_your_data_folder").load_data()
# use API Catalog's reranker model
my_key = os.environ["NVIDIA_API_KEY"]
rerank = NVIDIARerank()
# parse nodes
parser = SentenceSplitter(separator="\n", chunk_size=200, chunk_overlap=0)
nodes = parser.get_nodes_from_documents(documents)
# rerank
rerank.postprocess_nodes(nodes, query_str=query)
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
File details
Details for the file llama_index_postprocessor_nvidia_rerank-0.4.0.tar.gz
.
File metadata
- Download URL: llama_index_postprocessor_nvidia_rerank-0.4.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.10 Darwin/22.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a17ee40137b00c39149d8ae6e81ca2cf6bbfdaa16805eca37ae0eee3fec7b9a |
|
MD5 | 124793acb7f8898390618d314777ddf1 |
|
BLAKE2b-256 | 625d4a967e901a6ed611d3cdae01099fae2ccac4d17ae54ce548f02fbdbfc59a |
File details
Details for the file llama_index_postprocessor_nvidia_rerank-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: llama_index_postprocessor_nvidia_rerank-0.4.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.10 Darwin/22.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3c6207a8f7b267c5dcf871b596de463625093c8010b8c0974a831e84f2e9885 |
|
MD5 | 9da0d80783600f5a018e4effe283793f |
|
BLAKE2b-256 | f4a81e6b332df40c2ae28ed2436c5bff53fc70909b9e9c5a33faed9780089000 |