n8n-nodes-gemini-ai
Version:
n8n community node for Google Gemini AI integration with text generation, file upload & analysis, and TTS (Text-to-Speech) support
11 lines (10 loc) • 380 B
TypeScript
declare module 'n8n-workflow' {
interface INodeTypeDescription {
usableAsTool?: boolean;
}
}
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Gemini implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}