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.

10 lines (9 loc) 343 B
import { ILoadOptionsFunctions, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class AimlApi implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; }