n8n-nodes-gemini-search
Version:
n8n nodes to interact with Google Gemini API for search and content generation
15 lines (14 loc) • 537 B
TypeScript
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class GeminiSearchTool implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getModels(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}