UNPKG

n8n-nodes-openai-analytics

Version:
8 lines (7 loc) 291 B
import { INodeExecutionData } from 'n8n-workflow'; import { INodeContext } from '../../types'; /** * LLM 기반 텍스트 분류기 * 바로 LLM에 질의해서 카테고리 분류를 수행 */ export declare function llmBasedClassify(context: INodeContext): Promise<INodeExecutionData>;