A multimodal model that accepts text, images and sometimes audio in a single request is genuinely useful when the task actually requires combining information across those modes — reading a scanned invoice where the layout and the text both carry meaning, or answering a question about what's visible in a photograph. It's a poor fit when a product simply has an image somewhere in its workflow and the team defaults to sending it to the model because the capability exists, when a much cheaper text-only or vision-specific pipeline would do the job.
The genuine use cases share a pattern: the modalities carry complementary information that's lost if you process them separately. A document processing task where the visual layout — which field is where on the page — matters as much as the text content is a strong multimodal case, because separating the two loses the spatial context that the layout was actually conveying. A product that just needs to extract text from an image is better served by a dedicated OCR step feeding into a text-only model, which is cheaper and more predictable.
Voice adds a further layer of complexity worth being deliberate about, because voice input carries information a text transcript alone doesn't — tone, hesitation, emphasis — and whether that matters depends entirely on the task. A customer service application where sentiment genuinely affects the right response benefits from processing voice characteristics directly; a simple voice-to-text-to-answer pipeline where only the words matter doesn't need that complexity and does better with a straightforward transcription step feeding a text model.
Cost and latency compound across modalities in ways worth modelling before committing to a multimodal architecture. Processing an image alongside text is more expensive per request than text alone, and for a high-volume feature that difference matters at scale. The question worth asking before reaching for a multimodal model by default: does this task genuinely need the modalities combined, or would processing them separately, each with the cheaper tool suited to it, produce the same result for less?