ModelRefs / Multimodal AI — AI Glossary
Multimodal AI — AI Glossary
AI models that can process and/or generate more than one modality — text, image, audio, video, or code. Accepting an image is not the same as reasoning over it.
Overview
Native multimodal models (GPT-4o, Gemini 2.5 Pro, Claude 3.5 Sonnet) tokenize images and audio directly into the same embedding space as text. They enable OCR-free document understanding, video Q&A, chart interpretation, and voice agents.
Reference details
| Topic | multimodal |
|---|---|
| Last reviewed | 2026-06-24 |
Related terms
Example: Why native beats a pipeline
A bolted-together pipeline runs OCR over a chart, extracts “Q3: 42”, and hands text to the model — the axis labels, the trend line and the legend are gone before the model sees anything. A natively multimodal model tokenises the image into the same embedding space as text, so “is the Q3 dip seasonal?” can be answered from the shape of the line, not just the extracted number.
Commonly confused with
Accepting an image is not the same as reasoning over it. Many systems described as multimodal are a text model behind an OCR or captioning step, which discards layout, colour and spatial relationships. Native multimodality means the modality reaches the model as tokens, not as someone else's transcription.
When to use it
Reach for it when:
- Layout, position or visual structure carries meaning — charts, forms, screenshots
- OCR would destroy the information you actually need
- The task spans modalities: describe this diagram, then write the code
Reach for something else when:
- The document is clean text — OCR plus a text model is cheaper and often more accurate
- Images arrive at volume; vision tokens are expensive and inflate context fast
- You need deterministic extraction from a fixed form, where a parser beats a model
Referenced by
This term is used by the following ModelRefs references:
Continue your research
Use these connected ModelRefs sections to compare alternatives, inspect implementation paths, and review the evidence and governance boundaries relevant to Multimodal AI — AI Glossary.
Frequently asked questions
What is Multimodal AI?
AI models that can process and/or generate more than one modality — text, image, audio, video, or code.
What concepts are related to Multimodal AI?
Closely related concepts include vision language model, asr, tts, llm.