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.
5 lines (4 loc) • 347 B
TypeScript
import type { IExecuteFunctions, INodePropertyOptions } from 'n8n-workflow';
import type { Operation } from '../types';
export declare function toModelOptions(models: unknown, operation: Operation): INodePropertyOptions[];
export declare function getModelEndpoints(context: IExecuteFunctions, baseURL: string, modelId: string): Promise<string[]>;