So far we’ve focused on text in, text out. AI can also see images, hear audio, and generate video—multimodal AI.

What Multimodal Means

Unimodal:  text → model → text        (early ChatGPT)
Multimodal:
           text + image → model → text   (GPT-4V)
           text → model → image          (DALL-E, Midjourney)
           audio → model → text          (Whisper)
           text → model → audio          (TTS)

Models handle multiple input/output types in one architecture.

How It Works (Simplified)

Early pipeline: vision model → caption → LLM. Information lost in translation.

Modern approach: end-to-end training on image–text pairs. GPT-4V, Gemini, Claude 3 follow this path.

Training pairs:
  [cat photo + "an orange tabby cat"]
  [chart + "bar chart shows Q3 sales up 20%"]
  [UI screenshot + "login page with email and password fields"]

→ model learns: see ↔ understand ↔ describe

What Works in 2026

Image Understanding

  • Describe images, answer questions
  • Read charts, tables, screenshots
  • Review UI, code screenshots, architecture diagrams
You: [upload error screenshot]
AI: "Python ImportError—missing pandas.
     Run pip install pandas."

Image Generation

  • Text → image (DALL-E 3, Midjourney, Stable Diffusion)
  • Editing: inpainting, style transfer

Speech

  • ASR (Whisper): multilingual, accurate, open source
  • TTS: near-human synthesis
  • Realtime voice (GPT-4o): low-latency spoken dialogue

Video (Rapidly Evolving)

  • Short video generation (Sora, Kling, Runway)
  • Long video understanding (Gemini 1.5, ~1 hour)
  • Quality and consistency still lag images/text

What Still Fails (Ignore the Hype)

Looks capableReality
Count objects preciselyOften wrong with small/overlapping objects
Complex spatial relationsSimple cases OK; hard scenes fail
Readable text in generated imagesOften garbled
Long consistent character videoMostly not there yet
Real-time video understandingHigh latency and cost

Practical Uses

  1. Screenshot Q&A: errors, UI bugs, design review
  2. Document OCR + understanding: photo → structured fields
  3. Whiteboard → code: pseudo-code to runnable code
  4. Whisper for captions/meetings: local, free, strong

With Text AI and RAG

Multimodal extends channels—it does not replace text AI:

User: product photo + "how do I fix this?"
  → vision understands image
  → LLM + product RAG
  → agent checks repair manual API
  → repair steps

Summary

Multimodal AI moves models from “reading only” to seeing, hearing, and speaking. Image + dialogue is mature; video generation is catching up. Start with screenshot Q&A and Whisper transcription.

Final fundamentals article: tying it together—production checklist.