LibreChat/app/chatgpt.js
2023-02-04 20:09:02 -05:00

10 lines
287 B
JavaScript

require('dotenv').config();
(async () => {
const { ChatGPTAPI } = await import('chatgpt');
const api = new ChatGPTAPI({ apiKey: process.env.OPENAI_KEY });
// send a message and wait for the response
let res = await api.sendMessage('What is OpenAI?');
console.log(res);
})();