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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@gluneau/n8n-nodes-venice

v0.1.2

Published

Venice.ai integration for n8n

Readme

@gluneau/n8n-nodes-venice

This is an n8n community node package that provides integration with Venice.ai's AI services. It allows n8n workflows to use Venice.ai's models for text generation, image creation, speech synthesis, and vector embeddings.

Features

This node package provides:

  • Venice AI (root node): Main entry point for Venice.ai integrations
  • Venice Chat Model (sub-node): Generate text using Venice.ai's chat models
  • Venice Image Generation (sub-node): Create and manipulate images with Venice.ai
  • Venice Text to Speech (sub-node): Convert text to spoken audio with Venice.ai
  • Venice Embeddings (sub-node): Generate vector embeddings from text with Venice.ai

Prerequisites

  • n8n (version 0.177.0 or later)
  • Node.js (version 18 or later)
  • A Venice.ai API key

Installation

Follow these steps to install this custom node package in your n8n instance:

Local Installation (Development)

  1. Clone this repository:

    git clone https://github.com/gluneau/n8n-nodes-venice.git
    cd n8n-nodes-venice
  2. Install dependencies:

    npm install
  3. Build the package:

    npm run build
  4. Link the package to your n8n installation:

    npm link
  5. In your n8n installation directory:

    cd ~/.n8n/nodes
    npm link @gluneau/n8n-nodes-venice
  6. Start n8n:

    n8n start

Production Installation

  1. Install directly from npm:

    npm install -g @gluneau/n8n-nodes-venice
  2. Start n8n:

    n8n start

Configuration

Setting up Venice.ai Credentials

  1. Log in to your n8n instance
  2. Go to Settings > Credentials
  3. Click on New Credential
  4. Search for "Venice.ai API" and select it
  5. Enter your Venice.ai API key
  6. Save the credential

Usage

After installation, you'll find the Venice.ai nodes in the n8n nodes panel.

Basic Workflow with Venice Chat Model

  1. Add a trigger node (e.g., HTTP Request or Manual trigger)
  2. Add the Venice AI node
  3. Click on the "Add Chat Model" button in the Venice AI node
  4. Configure the Venice Chat Model with your prompt and model settings
  5. Connect to output nodes as needed

Example: Text Generation Workflow

Here's a simple workflow that generates text based on a prompt:

  1. Manual Trigger
  2. Set node (to define the prompt):
    • Set a prompt variable with your text prompt
  3. Venice AI node:
    • Add a Chat Model
    • In the Chat Model, add a message with role "User" and content set to {{$json.prompt}}
    • Configure model and other parameters as needed
  4. Respond to Webhook node to return the result

Example: Image Generation Workflow

Create images from text descriptions:

  1. HTTP Request trigger
  2. Venice AI node:
    • Add Image Generation
    • Set prompt to {{$json.body.prompt}}
    • Configure size, style, and other parameters
  3. HTTP Response node to return the generated image

Example: Text-to-Speech Workflow

Convert text to spoken audio:

  1. HTTP Request trigger (with text input)
  2. Venice AI node:
    • Add Text to Speech
    • Set text to {{$json.body.text}}
    • Choose voice and format
  3. HTTP Response node to return the audio file

Example: Embeddings Workflow

Generate vector embeddings for text:

  1. Function node (with text input)
  2. Venice AI node:
    • Add Embeddings
    • Set input to {{$json.text}}
    • Configure model and dimensions
  3. Write to File node to save embeddings for further use

Development

Building

npm run build

Linting

npm run lint

Auto-fix linting issues:

npm run lintfix

Formatting Code

npm run format

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

If you encounter any issues or have questions, please:

  1. Check the issues page
  2. Create a new issue if your problem doesn't already exist

For Venice.ai API-specific questions, refer to their official documentation.