fix
Showing
2 changed files
with
4 additions
and
4 deletions
| ... | @@ -5,8 +5,8 @@ const cors = require('cors') | ... | @@ -5,8 +5,8 @@ const cors = require('cors') |
| 5 | 5 | ||
| 6 | // Open AI Configuration | 6 | // Open AI Configuration |
| 7 | const configuration = new Configuration({ | 7 | const configuration = new Configuration({ |
| 8 | organization: process.env.API_ORG, | 8 | organization: process.env.OPENAI_API_ORG, |
| 9 | apiKey: process.env.API_KEY, | 9 | apiKey: process.env.OPENAI_API_KEY, |
| 10 | }); | 10 | }); |
| 11 | const openai = new OpenAIApi(configuration); | 11 | const openai = new OpenAIApi(configuration); |
| 12 | 12 | ... | ... |
-
Please register or sign in to post a comment