UNPKG
n8n-nodes-openai-analytics
Version:
latest (0.1.7)
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
n8n node for OpenAI Analytics
n8n.io
dandacompany/n8n-nodes-openai-analytics
n8n-nodes-openai-analytics
/
dist
/
nodes
/
OpenAIAnalytics
/
actions
/
embedding
/
llmBasedClassify.d.ts
8 lines
(7 loc)
•
291 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
INodeExecutionData
}
from
'n8n-workflow'
;
import
{
INodeContext
}
from
'../../types'
;
/** * LLM 기반 텍스트 분류기 * 바로 LLM에 질의해서 카테고리 분류를 수행 */
export
declare
function
llmBasedClassify
(
context: INodeContext
):
Promise
<
INodeExecutionData
>;