n8n-nodes-geminiclone-v2
v1.2.1
Published
Custom Gemini Clone node with Google Search grounding and all original Gemini functionality
Maintainers
Readme
n8n-nodes-geminiclone
Custom Gemini Clone node for n8n with Google Search grounding support.
Features
- ✅ All original Gemini functionality (text, audio, video, image, document, file)
- ✅ Google Search Grounding - Get real-time information with citations
- ✅ Tool calling support
- ✅ Code execution support
- ✅ Multiple model support
- ✅ JSON output mode
Installation
- Install the package:
npm install n8n-nodes-geminicloneRestart n8n
Search for "Gemini Clone" in the node panel
Usage
- Add "Gemini Clone" node to your workflow
- Configure credentials with your Google Gemini API key
- For Google Search grounding, enable "Enable Google Search" option in text operation
- The response will include
groundingMetadatawith search results and citations
Google Search Grounding
When enabled, the node can:
- Access real-time information beyond model's knowledge cutoff
- Provide citations for factual claims
- Reduce hallucinations by grounding responses in web data
Example Response Structure
{
"text": "Spain won Euro 2024...",
"groundingMetadata": {
"webSearchQueries": ["UEFA Euro 2024 winner"],
"groundingChunks": [
{"web": {"uri": "https://...", "title": "Source 1"}}
],
"groundingSupports": [
{
"segment": {"startIndex": 0, "endIndex": 50},
"groundingChunkIndices": [0]
}
]
}
}Credentials
- Gemini Clone API: Requires Google Gemini API key
Node Configuration
- Model: Choose Gemini model (2.5 Flash, 2.5 Pro, etc.)
- Resource: Select type of operation
- Operation: Choose specific action
- Enable Google Search: Toggle grounding with Google Search
License
MIT
Support
For issues and feature requests, please create an issue in the repository.
