Request failed with status code 401

import express from ‘express’
import cors from ‘cors’
import bodyParser from ‘body-parser’
import env from ‘dotenv’
import {Configuration, OpenAIApi} from ‘openai’

const app = express()

env.config()

app.use(cors())
app.use(bodyParser.json())

// configure open api
const configuration = new Configuration({
** organization: ",**
** apikey: process.env.API_KEY**
})
const openai = new OpenAIApi(configuration)
// Listening
app.listen(“3080”, ()=> console.log(“listening on port 3080”))

//Dummy route
app.get (“/”, (req, res) => {
** res.send(“Hello World!”)**
})

//post route for making requets
app.post(‘/’, async (req, res)=>{
** const {message} = req.body**

** try{**
** const response = await openai.createCompletion({**
** model: “text-davinci-003”,**
** prompt: ${message},**
** max_tokens: 100,**
** temperature: .5**
** })**
** res.json({message: response.data.choices[0].text})**

** }catch(e){**
** console.log(e)**
** res.status(400).send(e)**
** }**
})
I wrote this code, I am getting Error 401, Anybody help me, Thank you

You should consider console logging the value above to insure your environmental variable API_KEY is being property sent to the API.

HTH

.env file , API_KEY=“sk-T*********************B4”

Then in index. Js file

const configuration = new Configuration({
** organization: "*******",
** apikey: process.env.API_KEY

This is wrote, again same error 401