AGENCYSCRIPT
CoursesEnterpriseBlog
đź‘‘FoundersSign inJoin Waitlist
AGENCYSCRIPT

Governed Certification Framework

The operating system for AI-enabled agency building. Certify judgment under constraint. Standards over scale. Governance over shortcuts.

Stay informed

Governance updates, certification insights, and industry standards.

Products

  • Platform
  • Certification
  • Launch Program
  • Vault
  • The Book

Certification

  • Foundation (AS-F)
  • Operator (AS-O)
  • Architect (AS-A)
  • Principal (AS-P)

Resources

  • Blog
  • Verify Credential
  • Enterprise
  • Partners
  • Pricing

Company

  • About
  • Contact
  • Careers
  • Press
© 2026 Agency Script, Inc.·
Privacy PolicyTerms of ServiceCertification AgreementSecurity

Standards over scale. Judgment over volume. Governance over shortcuts.

On This Page

Mistake 1: Sending Images at the Wrong ResolutionMistake 2: Letting Text Override the ImageMistake 3: Trusting the First Pass on High-Stakes ExtractionMistake 4: Ignoring Cost and Context BudgetMistake 5: Skipping Privacy and RedactionMistake 6: Demoing on Happy-Path Inputs OnlyMistake 7: Treating All Modalities as Equally MatureHow These Mistakes CompoundThe cheapest insuranceFrequently Asked QuestionsWhich of these mistakes is the most common?How do I know if my model is overriding the image with text?Is redaction really necessary for internal tools?Can I avoid verification if the model seems accurate in testing?Key Takeaways
Home/Blog/Multimodal Failures Look Fluent, Confident, and Completely Wrong
General

Multimodal Failures Look Fluent, Confident, and Completely Wrong

A

Agency Script Editorial

Editorial Team

·April 27, 2026·8 min read
multimodal AImultimodal AI common mistakesmultimodal AI guideai fundamentals

The dangerous thing about multimodal AI mistakes is that they do not look like mistakes. A text-only model that fails often produces obvious nonsense. A multimodal model that fails produces a fluent, confident answer about an image it misread. Nobody notices until a wrong total ships in an invoice or a moderation system approves something it should have blocked.

These failures are not random. They cluster around a handful of patterns that show up again and again across teams. Below are the seven I see most, why each happens, what it costs, and the practice that prevents it. If you are setting up a new workflow, pair this with the sequence in A Step-by-Step Approach to Multimodal AI so the fixes are baked in from the start.

Mistake 1: Sending Images at the Wrong Resolution

Why it happens. People send whatever the user uploaded, often a giant full-page screenshot, assuming bigger is better. But models downsample images to a fixed internal size. Send a full page and the small text you care about becomes a smear of pixels.

The cost. The model misreads numbers, drops table rows, or invents text it cannot actually see.

The fix. Crop to the region that matters and resize so the critical detail is legible. The quick test: open the image at the size the model receives and try to read it yourself. If you cannot, neither can the model. For dense documents, tile them into sections.

Mistake 2: Letting Text Override the Image

Why it happens. Models are trained on far more text than paired image data, so they lean on text when the two conflict. Ask about a blue car with a caption that says red, and the model may say red.

The cost. In any workflow where the user's description and the image disagree, the model trusts the wrong source. This quietly corrupts support triage, moderation, and verification tasks.

The fix. Tell the model explicitly how to resolve conflicts: "If the image and the description disagree, trust the image and flag the discrepancy." Then test with deliberately mismatched pairs to confirm it obeys.

Mistake 3: Trusting the First Pass on High-Stakes Extraction

Why it happens. The output looks clean and structured, so it feels trustworthy. A fabricated invoice total is formatted exactly like a real one.

The cost. Bad data flows downstream into accounting, contracts, or compliance, where it is expensive to catch later.

The fix. Add verification. Recompute extracted totals from line items in code. Ask the model to flag low-confidence reads. Route anything uncertain to a human. Never let a single multimodal pass be the final word on money, health, or legal facts.

Mistake 4: Ignoring Cost and Context Budget

Why it happens. During prototyping, nobody watches the bill or the context window. Then someone sends ten high-resolution screenshots in one request.

The cost. Costs spike unexpectedly, and worse, the images crowd out your instructions in the context window, degrading the answer.

The fix. Treat resolution as a cost dial and turn it down to the minimum that passes your tests. Limit how many images go into one request. Remember that each image consumes a real chunk of context, the same budget your prompt needs. The cost discipline in The Complete Guide to Multimodal AI covers the trade-offs in depth.

Mistake 5: Skipping Privacy and Redaction

Why it happens. Teams think about data privacy for text but forget that images and audio carry far more incidental personal data, faces, license plates, account numbers, background conversations.

The cost. You ship personal data to a third-party model the user never intended to share, creating a compliance and trust problem.

The fix. Redact before sending. Blur faces and sensitive fields. Trim audio to the relevant clip. Treat every image and recording as if it contains personal data, because it usually does.

Mistake 6: Demoing on Happy-Path Inputs Only

Why it happens. You test with the three clean images you happened to have, it works, and you call it done.

The cost. Real users send blurry, rotated, dark, and cluttered inputs. The model that aced your demo collapses on the first real photo taken in bad lighting.

The fix. Build a small adversarial test set, 20 to 50 cases, that includes blurry, rotated, low-light, and conflicting inputs alongside the boring typical ones. Read every output by hand the first time to spot patterns. This is the single highest-leverage habit in multimodal work.

Mistake 7: Treating All Modalities as Equally Mature

Why it happens. A model advertises image, audio, and video support, so people assume all three work equally well.

The cost. Vision-language is genuinely strong; video and audio understanding often lag because paired training data is scarcer. Teams build on the weak modality and ship something flaky.

The fix. Verify each modality independently before relying on it. Run your adversarial set per modality. When comparing options, the survey in The Best Tools for Multimodal AI flags which modalities are first-class versus bolted on.

How These Mistakes Compound

Individually, each mistake is a problem. Together, they are a disaster, because they hide each other. Picture a document-extraction pipeline that makes three of them at once.

You send full-page images at the wrong resolution, so the small print blurs. The model, unable to read it clearly, hallucinates plausible numbers. You only tested on clean sample documents, so you never saw it happen. And because you skipped verification, the fabricated totals flow straight into your accounting system, formatted perfectly, indistinguishable from real ones.

No single mistake here is exotic. Each is the default behavior of a team moving fast. But stacked, they produce a system that looks like it works, passes the demo, and quietly corrupts your data in production. That is why the fixes are not optional polish. They are the difference between a tool and a liability.

The cheapest insurance

If you do only two things from this list, fix resolution and build an adversarial test set. Resolution prevents the misreads at the source, and the test set surfaces the failures you would otherwise discover in production. Together they catch the majority of compounding failures before they ever ship.

Frequently Asked Questions

Which of these mistakes is the most common?

Resolution problems and happy-path-only testing are the two I see most. Both come from underestimating how messy real inputs are. Fixing resolution and building an adversarial test set together eliminate a large share of production failures.

How do I know if my model is overriding the image with text?

Run a deliberate test: send an image that clearly contradicts its caption and ask a question only the image can answer correctly. If the model parrots the caption, it is text-biased, and you need to prompt it explicitly to trust the image.

Is redaction really necessary for internal tools?

Yes, if those tools send data to a third-party model. Even internal screenshots often contain customer names, account numbers, or faces. Redacting protects you legally and builds the habit before you ship anything external.

Can I avoid verification if the model seems accurate in testing?

No, not for high-stakes fields. Accuracy in testing does not guarantee accuracy on the long tail of real inputs, and the failures are silent because the output looks correct. Verification is cheap insurance against expensive downstream errors.

Key Takeaways

  • Multimodal failures are confident and fluent, which makes them harder to catch than text-only errors.
  • Resolution and happy-path-only testing cause the most production breakage; fix both first.
  • Tell the model how to resolve image-text conflicts, and verify high-stakes extractions in code.
  • Treat resolution as a cost dial and every image as carrying personal data that needs redaction.
  • Do not assume audio and video work as well as vision; test each modality on its own.

Search Articles

Categories

OperationsSalesDeliveryGovernance

Popular Tags

prompt engineeringai fundamentalsai toolsthe difference between AIMLagency operationsagency growthenterprise sales

Share Article

A

Agency Script Editorial

Editorial Team

The Agency Script editorial team delivers operational insights on AI delivery, certification, and governance for modern agency operators.

Related Articles

General

Prompt Quality Decides Whether AI Earns Its Keep

Prompt quality is the single biggest variable in whether AI delivers real work or expensive noise. The model matters, the platform matters — but the prompt you write determines whether you get a first

A
Agency Script Editorial
June 1, 2026·10 min read
General

Counting the Real Cost of Every Token You Send

Tokens and context windows sit at the intersection of AI capability and operational cost—yet most business cases treat them as technical footnotes. That's a mistake that costs real money. Every time y

A
Agency Script Editorial
June 1, 2026·10 min read
General

Rolling Out AI Hallucinations Across a Team

Most teams discover AI hallucinations the hard way — a confident-sounding wrong answer makes it into a client deliverable, a legal brief, or a published report. The damage isn't just to the output; it

A
Agency Script Editorial
June 1, 2026·11 min read

Ready to certify your AI capability?

Join the professionals building governed, repeatable AI delivery systems.

Explore Certification