79072691

Date: 2024-10-10 04:08:06
Score: 1
Natty:
Report link

Your variable is not existing in the environment, you can try dotenv.config() to make it exist:

import dotenv from 'dotenv';
dotenv.config();
const OPENAI_API_KEY = process.env.OPENAI_API_KEY;
console.log(OPENAI_API_KEY);

Ref: https://www.npmjs.com/package/dotenv

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Duy Phương