IT Practice Exams

AIF-C01 · Fundamentals of Generative AI · Updated July 26, 2026

Multimodal AI Models Explained: When One Model Handles Text, Images, and Audio

A multimodal model is a single artificial intelligence (AI) model that can work with more than one type of data — text, images, audio, or video — within the same request. Where a text-only large language model (LLM) understands nothing but words, a multimodal foundation model can accept a photograph together with a written question and return an answer that refers to details visible in the photograph. On the AIF-C01 exam, multimodality decides a very practical question: whether one model can do a job that would otherwise require stitching together several single-purpose services.

What “modality” means

In machine learning, a modality is simply a category of data: text, image, audio, video, and occasionally structured data such as tables or source code. When you compare pre-trained foundation models, each model’s specification lists which modalities it accepts as input and which it can produce as output — right alongside cost, latency, model size, supported languages, and context window length.

This vocabulary matters because exam writers like to test the definition directly. Modality is about data types, not about how many languages a model speaks (that is multilingual support), not about how many tasks it can perform (that is generality), and not about how large it is (that is parameter count). A model that only reads and writes English text is unimodal no matter how capable it is; a model that reads images and writes text spans two modalities.

Input and output modalities are separate lists

A common trap is assuming “multimodal” means the model can do everything with every data type. In reality, a model’s supported inputs and supported outputs are two different lists, and they rarely match:

  • Image-understanding models accept image plus text as input and produce text as output. This covers describing a photo, answering questions about a chart, or reading a scanned document.
  • Image-generation models run in the other direction: text in, image out. Text-to-image generators are multimodal too, even though they never accept a picture as input.
  • Speech-capable models may accept audio input, produce synthesized audio output, or both.

Matching the direction of modality support to the use case is the skill being tested. A team that needs “photo plus prompt in, caption out” needs image input and text output — an image generator would be the wrong pick despite also being “multimodal.”

How a multimodal model processes mixed inputs

Under the hood, each modality is converted into the same kind of internal representation. Text is split into tokens and embedded as numeric vectors; an image is divided into patches that are encoded into vectors in the same representation space; audio is converted into spectrogram-like features and embedded the same way. Once everything is a vector in a shared space, the model’s attention layers can relate a word in your prompt to a region of the image — this is how it can answer “what color is the car on the left?”

That alignment is learned during pre-training on paired data: images with captions, audio with transcripts, video with descriptions. Because the model learns that the word “stethoscope” and pictures of stethoscopes point to the same concept, it can reason jointly across modalities rather than merely processing them side by side. Joint reasoning is the capability that separates a true multimodal model from a bolted-together pipeline — the model can produce a caption that references what is actually visible in the product photo, or read a clinician’s handwritten note in a scanned image and summarize its medical content as structured text.

One multimodal model vs. a chain of single-modality services

Before multimodal foundation models, the standard architecture was a pipeline: run an optical character recognition (OCR) service such as Amazon Textract to pull text out of a document image, or Amazon Rekognition to label objects in a photo, or Amazon Transcribe to turn speech into text — then feed the resulting text into a text-only model. That pattern still has its place, but it is no longer the only option, and the exam expects you to know the tradeoff.

ConsiderationSingle multimodal foundation modelChained single-modality services
ArchitectureOne model, one inference callMultiple services wired together with glue code
Cross-modal reasoningNative — output can reference visual details in context of the promptLimited — downstream model only sees extracted text/labels, not the original image
Cost and operational simplicityFewer components to pay for, secure, and monitorPer-service pricing, more integration and failure points
Specialized accuracyGeneralist; strong broad understandingPurpose-built services can excel at narrow jobs (e.g., form field extraction)
Typical fitTasks needing understanding of image content in context: captioning, visual Q&A, summarizing scanned handwritten notesStructured extraction from standardized documents, high-volume transcription

When a scenario emphasizes cost and simplicity of the architecture and the task requires genuinely understanding mixed inputs, the multimodal foundation model is the intended answer. When the job is narrow and mechanical — pulling key-value pairs out of thousands of identical forms — a dedicated service remains a strong choice.

Multimodal models on AWS

Amazon Bedrock is the managed service where you access foundation models through a single API, and its model catalog spans the modality spectrum: text-only LLMs, image-understanding models that take image-plus-text input and return text, and image-generation models that turn prompts into pictures. When you evaluate Bedrock models for a project, the listed input and output modalities are one of the first filters you apply — before you ever compare price or latency. The broader selection process, including cost, context window, and language coverage, is covered in how to choose a foundation model.

Two clarifications the exam rewards. First, AWS AI services like Amazon Rekognition (image analysis), Amazon Textract (document text extraction), Amazon Transcribe (speech-to-text), and Amazon Polly (text-to-speech) each handle a specific modality conversion, but each is a single-purpose service — using three of them together does not make any one of them multimodal. Second, a multimodal model performs its cross-modal understanding inside one set of weights, which is what enables the single-call architecture.

How the AIF-C01 exam tests this

  • Straight definition. A question asks what “modality” refers to when evaluating pre-trained foundation models. The answer is the types of data the model can accept and generate — distractors point to languages, parameter count, or licensing.
  • Requirement matching. A scenario lists the inputs (an image and a text prompt) and the desired output (text), then asks which model type fits or what factor drives the selection. Mixed input types is the signal: the team needs a multimodal foundation model, and the driver is the requirement to accept more than one data type.
  • Architecture simplification. A scenario stresses cost, simplicity, or “a single solution” while describing an image input and a text output — say, summarizing scanned handwritten notes. The intended answer is the model characteristic (multimodal capability) that lets one model replace a multi-service pipeline.
  • Modality-direction discrimination. Options mix image-understanding and image-generation models. Read which direction the data flows; a text-to-image generator cannot analyze an uploaded photo.

Modality questions live in the Fundamentals of Generative AI domain — see the full AIF-C01 study guide for how that domain fits into the overall exam, and timed practice questions will train you to spot the mixed-input signal fast.

Quick reference

  • A modality is a data type: text, image, audio, video. Multimodal = the model handles more than one.
  • Input modalities and output modalities are separate lists; match the direction to the use case.
  • Common multimodal pattern: image + text in, text out (captioning, visual Q&A, document understanding).
  • Text-to-image generators are also multimodal — but they generate images, they don’t analyze them.
  • Multimodal models embed every modality into a shared representation space, enabling joint reasoning across a prompt and an image.
  • One multimodal model can replace an OCR-plus-LLM pipeline when cost, simplicity, and cross-modal understanding matter.
  • Amazon Bedrock’s catalog lists each foundation model’s input/output modalities; Rekognition, Textract, Transcribe, and Polly are single-modality services.
  • “Multimodal” ≠ multilingual, multi-task, or large — it is strictly about data types.
Choose your exam → Lifetime access
from $59, once