UNPKG

n8n-nodes-gemini-search

Version:

n8n nodes to interact with Google Gemini API for search and content generation

15 lines (14 loc) 533 B
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core'; import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class GeminiSearch implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getModels(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }