gpt3 チャットボットを作成しようとしていますが、Discord.js v11 でこのエラーが発生し続けます。
[Uncaught RangeError [MESSAGE_CONTENT_TYPE]: メッセージの内容は空でない文字列でなければなりません]
client.on("messageCreate", function (message) {
if (message.author.bot) return;
prompt += `You: ${String(message.content)}\n`;
(async () => {
const gptResponse = await openai.complete({
engine: 'davinci',
prompt: prompt,
maxTokens: 60,
temperature: 0.3,
topP: 0.3,
presencePenalty: 0,
frequencyPenalty: 0.5,
bestOf: 1,
n: 1,
stream: false,
stop: ['\n', '\n\n']
});
message.reply(String(gptResponse.data.choices[0].text.substring(5)));
prompt += `${gptResponse.data.choices[0].text}\n`;
})();
});
client.login(process.env.BOT_TOKEN);