scrimba
Dall-E & GPT Vision
Size, quality and style
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
Size, quality and style
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 steampunk city with gear-driven machines, airships docked atop buildings, and streets lit by gas lamps, set in a vast canyon"
});
console.log(image.data)

document.body.innerHTML = `<img src="${image.data[0].url}" alt="AI-generated image">`;
Console
[
{revised_prompt:
"Imagine a vast, expansive canyon where a city has been built in the style of steampunk. This city is bustling with life, powered by intricate, gear-driven machinery and characterized by the rhythmic clanking and hissing of steam and metal. Airships, large and small, cruise in the sky, docked atop the city's tallest buildings - a testament to the advanced technology of the city. The streets are bathed in the warm, flickering glow of gas lamps as the city comes alive in the night. Industriousness and elegance intertwine in this cityscape, creating a unique tapestry of human ingenuity and nature's grandeur."
, url:
"https://oaidalleapiprodscus.blob.core.windows.net/private/org-hILmMJhWE2V3rB3oGuJuRWMy/user-D2ZUX8laI3rwHivJHNEA41mW/img-wBqiI7ZXYNehSsGmggXQbC7z.png?st=2024-03-29T17%3A26%3A46Z&se=2024-03-29T19%3A26%3A46Z&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-03-29T01%3A48%3A33Z&ske=2024-03-30T01%3A48%3A33Z&sks=b&skv=2021-08-06&sig=dTgyAL5topDOLe9oB311KC8F3j0xjaAkj%2BxFFM9dy1o%3D"
}
]
,
/index.html
-5:54