Package Information
Released: 3/18/2025
Downloads: 26 weekly / 167 monthly
Latest Version: 1.5.4
Author: henkey
Documentation
n8n-nodes-aistudio
This package contains nodes for n8n that allow you to integrate with various AI APIs, including Google Gemini, Anthropic Claude, and OpenAI GPT models.
Features
- Gemini AI Studio Node: Connect to Google's Gemini API to generate text content, chat, and analyze images
- Claude AI Studio Node: Connect to Anthropic's Claude API for high-quality text generation and chat capabilities
- OpenAI Studio Node: Connect to OpenAI's API for chat completions, image analysis, and text embeddings
Installation
In n8n
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-aistudio-updated
in Enter npm package name - Select Install
Global installation
npm install -g n8n-nodes-aistudio-updated
Local installation (Development)
- Clone this repository
- Navigate to the directory:
cd n8n-nodes-aistudio-updated
- Install dependencies:
npm install
- Build the code:
npm run build
- Link to your n8n installation:
npm link
- In your n8n installation directory, run:
npm link n8n-nodes-aistudio-updated
Usage
After installation, you'll have access to the following nodes in n8n:
Gemini AI Studio
Use this node to interact with Google's Gemini API. Capabilities include:
- Generate text content based on prompts
- Chat with the model in a conversational manner
- Analyze images with Gemini Vision
Claude AI Studio
Use this node to interact with Anthropic's Claude API. Capabilities include:
- Generate completions based on prompts
- Chat with Claude in a conversational manner
OpenAI Studio
Use this node to interact with OpenAI's API. Capabilities include:
- Generate chat completions with GPT models
- Analyze images with GPT-4 Vision
- Create text embeddings for vector storage and similarity search
Credentials
To use these nodes, you'll need to set up credentials:
- Gemini API: Requires a Gemini API key from Google AI
- Anthropic API: Requires an Anthropic API key
- OpenAI API: Requires an OpenAI API key
Examples
Here are some example workflows:
- AI Content Generator: Create a workflow that takes a topic as input and uses the Gemini node to generate blog post outlines
- AI Chat Assistant: Create a customer service chatbot using the Claude node
- Image Analysis Pipeline: Use the OpenAI node to analyze images and extract information
Development
To develop or modify this package:
- Clone the repository
- Install dependencies with
npm install
- Make your changes
- Build with
npm run build
- Link it to your local n8n installation for testing