UNPKG

n8n-nodes-openai-analytics

Version:
11 lines (10 loc) 512 B
import { IExecuteFunctions, ILoadOptionsFunctions, INodeParameters } from 'n8n-workflow'; /** * 카테고리 임베딩 생성 함수 * 카테고리 문자열에 대한 임베딩 벡터를 생성하여 UI 필드에 저장 */ export declare function generateCategoryEmbedding(this: IExecuteFunctions | ILoadOptionsFunctions, index: number, fieldData: INodeParameters, path: string[]): Promise<INodeParameters>; export * from './file'; export * from './report'; export * from './text'; export * from './thread';