scrimba
AI Embeddings
Set up environment variables
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Set up environment variables
Expand for more info
index.js
run
preview
console
import OpenAI from 'openai';

// OpenAI config
export const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY,
dangerouslyAllowBrowser: true
});
Console
/index.html
-1:34