npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-voyageai

v0.1.3

Published

n8n community node for VoyageAI embeddings and reranking

Readme

n8n-nodes-voyageai

This is an n8n community node package that provides VoyageAI embedding and reranking nodes for use in n8n workflows.

Installation

In your n8n instance, go to Settings > Community Nodes and install:

n8n-nodes-voyageai

Or install via npm:

npm install n8n-nodes-voyageai

Nodes

Embeddings VoyageAI

Generate text embeddings using VoyageAI's embedding models. Uses the official voyageai SDK directly.

Supported models:

| Model | Default Dimensions | Flexible Dimensions | Description | |-------|-------------------|---------------------|-------------| | voyage-4-large | 1024 | 256, 512, 1024, 2048 | Flagship model, best general-purpose and multilingual quality | | voyage-4 (default) | 1024 | 256, 512, 1024, 2048 | General-purpose model, strong quality | | voyage-4-lite | 1024 | 256, 512, 1024, 2048 | Optimized for latency and cost | | voyage-4-nano | 1024 | 256, 512, 1024, 2048 | Open-weight model, smallest and fastest | | voyage-code-3 | 1024 | 256, 512, 1024, 2048 | Optimized for code retrieval | | voyage-finance-2 | 1024 | - | Optimized for finance domain | | voyage-law-2 | 1024 | - | Optimized for legal domain | | voyage-multilingual-2 | 1024 | - | Optimized for multilingual content | | voyage-3.5 | 1024 | 256, 512, 1024, 2048 | Previous generation general-purpose | | voyage-3.5-lite | 1024 | 256, 512, 1024, 2048 | Previous generation lite | | voyage-3-large | 1024 | 256, 512, 1024, 2048 | Previous generation large |

Options: batch size, input type (query/document), output dimension (256/512/1024/2048), truncation, encoding format, output data type (float/int8/uint8/binary/ubinary).

Output dimension and output data type are shown conditionally for models that support flexible dimensions (voyage-4*, voyage-3.5*, voyage-3-large, voyage-code-3).

Embeddings VoyageAI Multimodal

Generate multimodal embeddings from text, images, or both using VoyageAI multimodal models.

Supported models:

| Model | Description | |-------|-------------| | voyage-multimodal-3.5 (default) | Latest multimodal model, supports text, images, and video screenshots | | voyage-multimodal-3 | Previous generation multimodal model |

Content types: Text only, Image URL only, Text + Image URL, Binary image only, Text + Binary image.

Embeddings VoyageAI Contextualized

Generate context-aware embeddings for document chunks using the voyage-context-3 model. Chunks with the same document ID are processed together to preserve inter-chunk relationships.

Required fields: Document ID field, Text field.

Reranker VoyageAI

Reorder documents by relevance to a query using VoyageAI's rerank models.

Known Limitation: NodeConnectionTypes.AiReranker does not currently work for n8n community nodes. This node is included for completeness but will not function until n8n lifts this restriction.

Supported models: rerank-2.5, rerank-2.5-lite, rerank-2, rerank-2-lite.

Credentials

This package requires a VoyageAI API credential with your API key.

  1. Sign up at VoyageAI
  2. Get your API key from the dashboard
  3. In n8n, create a new VoyageAI API credential and paste your API key

Development

# Install dependencies
npm install

# Build
npm run build

# Run unit tests
npm run test:unit

# Run integration tests (requires VOYAGE_API_KEY)
VOYAGE_API_KEY=your-key npm run test:integration

# Run tests with coverage
npm run test:coverage

# Lint
npm run lint

License

MIT