OpenAI 노드 일반적인 문제
n8n OpenAI 노드에서 자주 발생하는 문제와 해결 방법을 다룹니다.
OpenAI 노드 에서 자주 발생하는 오류 및 문제와 해결 방법입니다. 서비스가 너무 많은 요청을 수신하고 있습니다 # 이 오류는 OpenAI의 속도 제한 을 초과했을 때 표시됩니다. 이 문제를 해결하는 두 가지 방법이 있습니다: Loop Over Items 노드를 사용하여 데이터를 더 작은 청크로 분할하고, 끝에 Wait 노드를 추가하여 적절한 시간을 설정하세요. 아래 코드를 복사하여 워크플로우에 붙여넣어 템플릿으로 사용하세요. { "nodes": [ { "parameters": {}, "id": "35d05920-ad75-402a-be3c-3277bff7cc67", "name": "When clicking 'Execute workflow'", "type": "n8n-nodes-base.manualTrigger", "typeVersion": 1, "position": [ 880, 400 ] }, { "parameters": { "batchSize": 500, "options": {} }, "id": "ae9baa80-4cf9-4848-8953-22e1b7187bf6", "name": "Loop Over Items", "type": "n8n-nodes-base.splitInBatches", "typeVersion": 3, "position": [ 1120, 420 ] }, { "parameters": { "resource": "chat", "options": {}, "requestOptions": {} }, "id": "a519f271-82dc-4f60-8cfd-533dec580acc", "name": "OpenAI", "type": "n8n-nodes-base.openAi", "typeVersion": 1, "position": [ 1380, 440 ] }, { "parameters": { "unit": "minutes" }, "id": "562d9da3-2142-49bc-9b8f-71b0af42b449", "name": "Wait", "type": "n8n-nodes-base.wait", "typeVersion": 1, "position": [ 1620, 440 ], "webhookId": "714ab157-96d1-448f-b7f5-677882b92b13" } ], "connections": { "When clicking 'Execute workflow'": { "main": [ [ { "node": "Loop Over Items", "type": "main", "index": 0 } ] ] }, "Loop Over Items": { "main": [ null, [ { "node": "OpenAI", "type": "main", "index": 0 } ] ] }, "OpenAI": { "main": [ [ { "node": "Wait", "type": "main", "index": 0 } ] ] }, "Wait": { "main": [ [ { "node": "Loop Over Items", "type": "main", "index"
