require('openai');
const bot = new Telegraf("token");
const openai = new OpenAI({ apiKey: "token" });
bot.on('text', async (ctx) => {
try {
const chatResponse = await openai.createChatCompletion({
model: "gpt-4-32k-0314",
messages: [{ role: "user", content: ctx.message.text }],
});
const message = response.data.choices[0].text.trim();
ctx.reply(message);
} catch (error) {
console.error(error);
ctx.reply('Ошибка при обработке вашего сообщения.');
}
});
bot.launch();
такая ошибка появляется: TypeError: openai.createChatCompletion is not a function
чем заменить createChatCompletion может кто подсказать?
А в документации что написано?
Обсуждают сегодня