Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
104 lines
2.2 KiB
TypeScript
104 lines
2.2 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import { NodeConnectionTypes, type INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import * as audio from './audio';
|
|
import * as document from './document';
|
|
import * as file from './file';
|
|
import * as fileSearch from './fileSearch';
|
|
import * as image from './image';
|
|
import * as text from './text';
|
|
import * as video from './video';
|
|
|
|
export const versionDescription: INodeTypeDescription = {
|
|
displayName: 'Google Gemini',
|
|
name: 'googleGemini',
|
|
icon: 'file:gemini.svg',
|
|
group: ['transform'],
|
|
version: [1, 1.1],
|
|
defaultVersion: 1.1,
|
|
subtitle: '={{ $parameter["operation"] + ": " + $parameter["resource"] }}',
|
|
description: 'Interact with Google Gemini AI models',
|
|
defaults: {
|
|
name: 'Google Gemini',
|
|
},
|
|
usableAsTool: true,
|
|
codex: {
|
|
alias: ['LangChain', 'video', 'document', 'audio', 'transcribe', 'assistant'],
|
|
categories: ['AI'],
|
|
subcategories: {
|
|
AI: ['Agents', 'Miscellaneous', 'Root Nodes'],
|
|
},
|
|
resources: {
|
|
primaryDocumentation: [
|
|
{
|
|
url: 'https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-langchain.googlegemini/',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
inputs: `={{
|
|
(() => {
|
|
const resource = $parameter.resource;
|
|
const operation = $parameter.operation;
|
|
if (resource === 'text' && operation === 'message') {
|
|
return [{ type: 'main' }, { type: 'ai_tool', displayName: 'Tools' }];
|
|
}
|
|
|
|
return ['main'];
|
|
})()
|
|
}}`,
|
|
outputs: [NodeConnectionTypes.Main],
|
|
credentials: [
|
|
{
|
|
name: 'googlePalmApi',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Audio',
|
|
value: 'audio',
|
|
},
|
|
{
|
|
name: 'Document',
|
|
value: 'document',
|
|
},
|
|
{
|
|
name: 'File Search',
|
|
value: 'fileSearch',
|
|
},
|
|
{
|
|
name: 'Image',
|
|
value: 'image',
|
|
},
|
|
{
|
|
name: 'Media File',
|
|
value: 'file',
|
|
},
|
|
{
|
|
name: 'Text',
|
|
value: 'text',
|
|
},
|
|
{
|
|
name: 'Video',
|
|
value: 'video',
|
|
},
|
|
],
|
|
default: 'text',
|
|
},
|
|
...audio.description,
|
|
...document.description,
|
|
...file.description,
|
|
...fileSearch.description,
|
|
...image.description,
|
|
...text.description,
|
|
...video.description,
|
|
],
|
|
};
|