llama-index-embeddings-vertex
llama-index embeddings vertex integration
What it is and what it does
This package bridges LlamaIndex and Google Vertex AI's embedding models, letting you generate text and multimodal embeddings within a LlamaIndex workflow. It wraps Vertex AI's embedding APIs—including the textembedding-gecko family and multimodal models—and exposes them through LlamaIndex's standard embedding interface, handling credential management and model selection transparently.
You supply GCP credentials and a model name, and the package handles the API calls to Vertex AI. It supports both direct credential objects and service account parameters for flexibility. The main constraint is that multimodal embedding doesn't support async operations, though text embeddings do.
Use it for:
- Build RAG pipelines in LlamaIndex using Vertex AI embeddings instead of third-party providers
- Generate multilingual embeddings with textembedding-gecko-multilingual for cross-language search
- Integrate multimodal embeddings for image and text understanding in LlamaIndex applications
- Migrate existing LlamaIndex applications to use Google Cloud's managed embedding service
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Integrates Google Vertex AI embedding models into LlamaIndex applications, providing access to text and multimodal embedding APIs with flexible credential handling.
Yes, if you are already using LlamaIndex and have access to Google Cloud with Vertex AI enabled. The package is actively maintained, has no known vulnerabilities, low install friction, and provides straightforward integration. Skip it if you don't use LlamaIndex or lack GCP infrastructure.
Install
llama-index-embeddings-vertex on PyPI
pip
pip install llama-index-embeddings-vertexuv
uv add llama-index-embeddings-vertexpoetry
poetry add llama-index-embeddings-vertexInstalling llama-index-embeddings-vertex
Before you install
Low install friction with only two runtime dependencies (google-cloud-aiplatform and llama-index-core). Actively maintained with recent releases.
License in practice
MIT license permits free use, modification, and distribution with minimal restrictions.
Quickstart
pip install llama-index-embeddings-vertex
from llama_index.embeddings.vertex import VertexTextEmbedding
from google.oauth2 import service_account
credentials = service_account.Credentials.from_service_account_file(
"path/to/service-account.json"
)
embedding = VertexTextEmbedding(
model_name="textembedding-gecko@003",
project="your-project-id",
location="your-region",
credentials=credentials,
)
Requires valid Google Cloud credentials and a GCP project with Vertex AI enabled. Python 3.10 or later required.
Verify before relying
- Whether async support for multimodalembedding is planned or if this is a permanent limitation
- Performance characteristics and latency of the various gecko model versions
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (<4.0,>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — google-cloud-aiplatform, llama-index-core |
| Maintenance | actively maintained — 155 days since the last release |
| First released | |
| Downloads | 81,613/month — #14,212 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: llama_index_embeddings_vertex-0.5.0-py3-none-any.whl
Tags
More Artificial Intelligence packages
LiteLLM provides a unified Python interface to…
permissive · top 100 on PyPI
huggingface-hubClient library and CLI tool for downloading,…
permissive · top 100 on PyPI
langchainLangChain provides a framework for building…
permissive · top 1,000 on PyPI
hf-xethf-xet provides chunk-based deduplication and…
permissive · top 1,000 on PyPI
tokenizersTokenizers converts raw text into token…
permissive · top 1,000 on PyPI
transformersTransformers provides a unified framework for…
permissive · top 1,000 on PyPI
llama-index-embeddings-google-genaiIntegrates Google's Gemini and Vertex AI…
permissive · top 15,000 on PyPI
llama-index-embeddings-ollamaIntegrates Ollama's local embedding models with…
permissive · top 15,000 on PyPI
llama-index-embeddings-openaiIntegrates OpenAI's embedding models with…
permissive · top 5,000 on PyPI
llama-index-embeddings-huggingfaceIntegrates Hugging Face embedding models with…
permissive · top 15,000 on PyPI
llama-index-embeddings-langchainIntegrates Langchain embedding models with…
permissive · top 15,000 on PyPI
llama-index-embeddings-bedrockProvides Amazon Bedrock embedding models…
permissive · top 5,000 on PyPI
llama-index-embeddings-azure-openaiIntegrates Azure OpenAI's embedding models with…
permissive · top 15,000 on PyPI
llama-index-llms-vertexIntegrates Google Vertex AI's LLM capabilities…
permissive · top 15,000 on PyPI
llama-index-vector-stores-qdrantIntegrates Qdrant vector database with…
permissive · top 15,000 on PyPI
llama-index-vector-stores-milvusIntegrates the Milvus vector database with…
permissive · top 15,000 on PyPI