Back to tools
AvailableHerramientas·

DALL-E 3

OpenAI's image generation model. Understands complex instructions, generates legible text in images and is available via API and ChatGPT.

Compatible with

openaidall-eimágenesgeneraciónherramientas

DALL-E 3

DALL-E 3 is OpenAI's image generation model, natively integrated into ChatGPT and available via API.

Improvements over DALL-E 2

  • Better prompt understanding: follows complex instructions without prompt engineering
  • Text in images: generates legible text within images
  • Greater coherence: objects, scenes and compositions more faithful to the prompt

API usage

from openai import OpenAI
client = OpenAI()

response = client.images.generate(
    model="dall-e-3",
    prompt="A robot reading a book in a futuristic library",
    size="1024x1024",
    quality="hd",
    n=1,
)
print(response.data[0].url)

Parameters

  • size: 1024x1024, 1024x1792, 1792x1024
  • quality: standard or hd
  • style: vivid or natural

Images documentation