scrimba
Dall-E & GPT Vision
Response formats
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
Response formats
Expand for more info
index.js
run
preview
console
import OpenAI from "openai";
const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY,
dangerouslyAllowBrowser: true,
});

const image = await openai.images.generate({
model: "dall-e-3",
prompt: "A curious hedgehog exploring a garden"
});
console.log(image.data);

// Response:
[{revised_prompt: "A well-detaied image of a small, pointy-haired, charismatic and curious hedgehog. It is exploring an enchanting garden full of diverse vegetation. The garden is lit by the soft rays of the setting sun, casting long and dramatic shadows. The hedgehog is seen interested in various flora, like blooming roses, tall sunflowers, and thick bushes. Dotted across the garden are numerous garden elements like a rustic wooden bench, a bird bath, and a small shed in the distance. The scene captures the essence of nature, wildlife, and the simple beauty of a garden.", url: "https://oaidalleapiprodscus.blob.core.windows.net/private/org-hILmMJhWE2V3rB3oGuJuRWMy/user-D2ZUX8laI3rwHivJHNEA41mW/img-l4Xh2EXqARmGZ53AxOtozdnr.png?st=2024-04-01T13%3A27%3A03Z&se=2024-04-01T15%3A27%3A03Z&sp=r&sv=2021-08-06&sr=b&rscd=inline&rsct=image/png&skoid=6aaadede-4fb3-4698-a8f6-684d7786b067&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-04-01T01%3A29%3A17Z&ske=2024-04-02T01%3A29%3A17Z&sks=b&skv=2021-08-06&sig=xzHMZlKqZoHIOdQLItP4PWYtEe4l78j74VboxRXROso%3D"}]
Console
[
{revised_prompt:
"A well-detaied image of a small, pointy-haired, charismatic and curious hedgehog. It is exploring an enchanting garden full of diverse vegetation. The garden is lit by the soft rays of the setting sun, casting long and dramatic shadows. The hedgehog is seen interested in various flora, like blooming roses, tall sunflowers, and thick bushes. Dotted across the garden are numerous garden elements like a rustic wooden bench, a bird bath, and a small shed in the distance. The scene captures the essence of nature, wildlife, and the simple beauty of a garden."
, url:
"https://oaidalleapiprodscus.blob.core.windows.net/private/org-hILmMJhWE2V3rB3oGuJuRWMy/user-D2ZUX8laI3rwHivJHNEA41mW/img-l4Xh2EXqARmGZ53AxOtozdnr.png?st=2024-04-01T13%3A27%3A03Z&se=2024-04-01T15%3A27%3A03Z&sp=r&sv=2021-08-06&sr=b&rscd=inline&rsct=image/png&skoid=6aaadede-4fb3-4698-a8f6-684d7786b067&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-04-01T01%3A29%3A17Z&ske=2024-04-02T01%3A29%3A17Z&sks=b&skv=2021-08-06&sig=xzHMZlKqZoHIOdQLItP4PWYtEe4l78j74VboxRXROso%3D"
}
]
,
/index.html
-5:56