Skip to main content

llama-index embeddings nvidia integration

Project description

NVIDIA NIMs

The llama-index-embeddings-nvidia 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.

NVIDIA's Embeddings connector

With this connector, you'll be able to connect to and generate from compatible models available and hosted on NVIDIA API Catalog, such as:

  • NVIDIA's Retrieval QA Embedding Model embed-qa-4

Installation

pip install llama-index-embeddings-nvidia

Setup

To get started:

  1. Create a free account with NVIDIA, which hosts NVIDIA AI Foundation models.

  2. Select the Retrieval tab, then select your model of choice.

  3. Under Input select the Python tab, and click Get API Key. Then click Generate Key.

  4. 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 API Catalog

from llama_index.embeddings.nvidia import NVIDIAEmbedding

embedder = NVIDIAEmbedding()
embedder.get_query_embedding("What's the weather like in Komchatka?")

Working with NVIDIA NIMs

When ready to deploy, you can self-host models with NVIDIA NIM—which is included with the NVIDIA AI Enterprise software license—and run them anywhere, giving you ownership of your customizations and full control of your intellectual property (IP) and AI applications.

Learn more about NIMs

from llama_index.embeddings.nvidia import NVIDIAEmbedding

# connect to an embedding NIM running at localhost:8080
embedder = NVIDIAEmbeddings(base_url="http://localhost:8080/v1")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_embeddings_nvidia-0.2.3.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file llama_index_embeddings_nvidia-0.2.3.tar.gz.

File metadata

File hashes

Hashes for llama_index_embeddings_nvidia-0.2.3.tar.gz
Algorithm Hash digest
SHA256 c24fbb9105a34cd13aad914a3d09a8eaa9f41a4c407f895a89b5ab82618ce866
MD5 e848aebdba730ea61af3c30366b4c439
BLAKE2b-256 9972f3d66d029ad4b4de8d40b4c65e67cfe4c4cfb1ef459bd1f55938211c73b7

See more details on using hashes here.

File details

Details for the file llama_index_embeddings_nvidia-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for llama_index_embeddings_nvidia-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d2ebf33640fbc89095804cd7aba9bc219422c441a5349eeabb647f1ed996105f
MD5 841a15af3a6ffcc3463dc06457718171
BLAKE2b-256 431af5462e9e9085e2000de5d7b3ab9f40b38eb598b8f9870cb1dcf6abe757d1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page