UNPKG

n8n-nodes-aimlapi

Version:

Custom n8n node for integrating with the AI/ML API platform (AIMLAPI) to interact with LLMs and multimodal AI models such as chat completion endpoints.

4 lines (3 loc) 255 B
import type { INodeExecutionData } from 'n8n-workflow'; import type { OperationExecuteContext } from '../types'; export declare function executeChatCompletion({ context, itemIndex, baseURL, model, }: OperationExecuteContext): Promise<INodeExecutionData>;