← Glossary
LLM concepts

Text-to-Image

A generative AI capability that produces images from natural-language text descriptions, typically using diffusion models or autoregressive image token models trained on paired image-text datasets.

Text-to-image generation matured rapidly with diffusion models (Stable Diffusion, DALL-E 3, Midjourney). The dominant architecture as of 2026 uses a text encoder (typically T5 or CLIP) to embed the prompt, then a latent diffusion model to iteratively denoise a random latent into the target image conditioned on the text embedding. Classifier-free guidance controls the prompt adherence/diversity tradeoff.

Autoregressive alternatives (DALL-E 2-era, GPT-5's image generation, Chameleon) tokenize images into discrete codebook tokens and generate them autoregressively alongside text. This enables tighter text-image integration but is slower than diffusion for high-resolution images.

As of 2026, Flux (Black Forest Labs), Ideogram 3, and Adobe Firefly dominate the text-to-image space for commercial use. Stable Diffusion 4 leads the open-source ecosystem. Text-to-image is increasingly integrated into agentic workflows for content creation, UI mockup generation, and marketing asset production.

## Related Terms

- [[glossary/multimodal|Multimodal]] — the ability to process and generate content across text, images, audio, and other modalities - [[glossary/vision-language-model|Vision-Language Model]] — a multimodal model that understands and reasons over both images and text - [[glossary/transformer|Transformer]] — the neural architecture underlying virtually all modern LLMs - [[glossary/embedding|Embedding]] — dense vector representations that power semantic similarity search - [[courses/claude-tool-use-from-zero|Course: Claude Tool Use from Zero]] — hands-on practice with the concepts covered in this entry

Related terms
MultimodalVision-Language ModelTransformerEmbedding