UNPKG

n8n-nodes-octagon

Version:

Professional n8n node for Octagon AI Agents - Access 15 specialized financial and market research AI agents including SEC filings, earnings transcripts, stock data, and private market intelligence

21 lines 818 B
import { IExecuteFunctions, INodeType, INodeTypeDescription, INodeExecutionData } from 'n8n-workflow'; /** * Professional n8n node for Octagon AI Agents * Provides access to 15 specialized financial and market research AI agents * * @author Octagon <ken@octagonai.co> * @version 1.0.4 * @since 2024-01-15 */ export declare class OctagonAgents implements INodeType { description: INodeTypeDescription; /** * Executes the Octagon AI agent request * * @param this - The n8n execution context * @returns Promise<INodeExecutionData[][]> - Formatted response with analysis and citations * @throws Error when API request fails or authentication is invalid */ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; } //# sourceMappingURL=OctagonAgents.node.d.ts.map