LabHub

Blog

The Complete Guide to Multimodal LLMs: Vision, Document Understanding, OCR, Video, Audio, and the Specifics of Korean (2025)

한국어English日本語中文

Season 4 Ep 8 — Ep 1–7 were mostly text-centric. From Ep 8 onward, the LLM expands into a world where it sees, hears, and reads. We will look together at what is true and what is false in the claim that "document processing can just be handed to an LLM now".

Prologue — The Rumor That "VLMs Killed OCR"

A claim that has been showing up constantly on YouTube and Twitter since late 2024: "Throw an image at GPT-4o/Claude/Gemini and you do not need OCR. The traditional pipeline is dead."

Half of it is right. For a clean receipt or screenshot, one VLM pass is enough. But:

So the 2025 answer is hybrid: traditional OCR/layout analysis + VLM post-processing + a verification loop.


Chapter 1 · The Multimodal LLM Landscape in 2025

1.1 Major Models

ModelProviderCharacteristics
GPT-4o / GPT-4.1OpenAIBest all-rounder, real-time voice and image
Claude 3.5 / 4 Sonnet·OpusAnthropicStrong on documents, code, reasoning
Gemini 2 / 2.5 Pro/FlashGoogle1M+ context, native video
Qwen2-VL / Qwen2.5-VLAlibaba (open)Top tier among open VLMs, decent Korean too
Pixtral 12B / LargeMistral (open)European open VLM
Llama 3.2-VisionMeta (open)11B/90B, ecosystem
Molmo / InternVLAllen AI / ShanghaiOpen, benchmark contenders
Phi 3.5-VisionMicrosoftSmall and fast
DeepSeek-VL2DeepSeekValue for money

1.2 Selection Criteria

1.3 Using Them Alongside Text-Only Models

Many products use the VLM only to convert an image into a text description or structured data, and everything after that — analysis and generation — is done by a text model. Practical in terms of cost, latency, and availability.


Chapter 2 · Vision Fundamentals

2.1 Architecture

Most VLMs work like this:

  1. A vision encoder (CLIP, SigLIP, and so on) turns the image into patch embeddings
  2. A projector (MLP/Q-Former) maps them into the token space of the LLM
  3. The LLM processes image tokens and text tokens together

2.2 Resolution Matters

2.3 Token Pricing


Chapter 3 · Document AI — Understanding Documents

3.1 The Pipeline of the Past

PDF/ImageOCR(Tesseract/ABBYY/Clova OCR)
Layout analysis (DocBank/LayoutLM/DocLayNet)
Table/Form extraction
Rule-based or classifier

3.2 The 2025 Stack

3.3 The Power of VLM + Coordinates

If you give the VLM not just the image but also the OCR result (words + coordinates):

For example:

<image>contract.png</image>
<ocr>
  {word: "갑", bbox: [..]}
  {word: "주식회사", bbox: [..]}
  ...
</ocr>
Task: Extract the contracting party names and the execution date as JSON. Include a bbox for each field.

3.4 Use Cases

3.5 The Specifics of Korean


Chapter 4 · The Modernization of OCR

4.1 Traditional OCR

4.2 The Era of LLM-Native OCR

4.3 Hybrid Best Practice

1) Obtain text + coordinates with fast OCR
2) The VLM performs semantic structuring (field classification, entity extraction)
3) VLM output must always be cross-checked against the original OCR text
4) On a failed check, retry or send it to a human

4.4 Beware of Benchmarks


Chapter 5 · Charts, Tables, and Drawings — The Hardest Area

5.1 Chart Understanding

5.2 Table Extraction

5.3 Drawings and Architecture

5.4 Scientific and Engineering Figures


Chapter 6 · Video Understanding

6.1 Approaches

6.2 Use Cases

6.3 Cost and Latency


Chapter 7 · Audio — STT and TTS

7.1 STT (Speech-to-Text)

ModelCharacteristics
Whisper (large-v3)Open, excellent multilingual
Deepgram NovaCommercial, low latency
AssemblyAICommercial, speaker diarization and emotion
Rev.ai / SpeechmaticsCommercial
Naver Clova SpeechSpecialized for Korean
Kakao SpeechSpecialized for Korean

7.2 The Real-Time Pipeline

7.3 TTS

7.4 Speech LLMs

7.5 Korean STT Tips


Chapter 8 · Multimodal RAG

8.1 The Basic Idea

Searching all the way into images, PDFs, and video segments using "the text of the question".

8.2 Three Approaches

(a) Textualize first, then RAG

(b) Multimodal embeddings

(c) Hybrid

8.3 PDF RAG in Practice

8.4 Cautions


Chapter 9 · UX Design — Multimodal Interfaces

9.1 Upload

9.2 Displaying Results

9.3 The Verification Loop


Chapter 10 · The Reality of Cost and Latency

10.1 Image Cost

10.2 Latency

10.3 Strategy


Chapter 11 · Security and Privacy

11.1 PII Inside Images

11.2 Data Residue

11.3 Regulation

11.4 Prompt Injection via Image


Chapter 12 · Three Real-World Cases

12.1 Processing Receipts and Tax Invoices

12.2 Contract Summarization and Issue Detection

12.3 Analyzing Call-Center Recordings


Chapter 13 · Ten Anti-Patterns

13.1 Using Only a VLM and Retiring OCR

Auditability and accuracy degrade. Hybrid recommended.

13.2 Maxing Out the Resolution

Cost and latency explode. Thumbnail → high resolution when needed.

13.3 No Defense Against Image Prompt Injection

Text inside the image gets read as an instruction → incident.

13.4 Not Checking Licenses

Copyright of training images, commercial licensing.

13.5 Using Chart Numbers Without Verification

Hallucination risk. Citation and cross-checking are mandatory.

13.6 Shoving a Whole One-Hour Video In at Once

Token explosion. Sample, and process the audio first.

13.7 Using English OCR on Korean Text

The accuracy gap is enormous. Look at Clova/Upstage/Kakao first.

13.8 No TTS Voice Guideline

Brand consistency breaks. Set rules for tone, speed, and intonation.

13.9 Reaching for a Big LLM in Real-Time Speech

The latency is not survivable. Use a small or distilled model for the first response, and a big model on the backend when needed.

13.10 No Result-Verification UI

Blind faith in automation → errors pile up. A user-correction UI is mandatory.


Chapter 14 · Checklist — Twelve Things Before a Multimodal Launch


Chapter 15 · Next Post Preview — Season 4 Ep 9: "Voice AI in Practice"

In Ep 8 audio was only a taste. Ep 9 concentrates on voice products alone.

Ep 9 sums up the era of "AI without a screen".

See you in the next post.


Summary: Multimodal in 2025 is not "everything at once with a VLM" but the combination of "the best tool for each modality + VLM post-processing + a verification loop". Vision means managing resolution and tokens, Document AI means an OCR+VLM hybrid, video means sampling with audio in parallel, and audio means putting STT/TTS/speech LLMs in exactly the right places. For Korean and for Korean documents, use local strengths such as Clova/Upstage/Kakao together with global VLMs to push the quality frontier as far as it will go. "VLMs killed OCR" is a meme, not an engineering judgment.

Comments

No comments yet.

Sign in to leave a comment