AI / GEO

콘텐츠 청크 추출 가능성 분석기

AI 답변 엔진과 RAG 시스템은 페이지 전체를 읽지 않고, 한 번에 하나의 청크만 검색하여 단독으로 보여줍니다. 이 도구는 콘텐츠를 같은 방식으로 분할하고, 주변 맥락 없이도 각 청크가 의미가 통하는지 점수를 매깁니다.

이 휴리스틱은 영어 텍스트에 맞춰져 있습니다. 단어 수와 구조 감지는 다른 라틴 문자 언어에서도 작동하지만, 대명사 및 구문 검사는 영어 전용입니다.

이 도구가 확인하는 것

AI Overviews, ChatGPT, Perplexity, RAG 기반 검색은 모두 내부적으로 동일한 방식으로 작동합니다. 페이지를 "청크"로 나누고 각각을 따로 저장한 뒤, 쿼리에 답할 수 있는 한두 개의 청크만 검색합니다. 페이지의 나머지 부분은 모델에 전혀 표시되지 않습니다. 페이지의 앞부분 내용에 의존하거나, 생각이 중간에 시작되거나, 설명 없는 약어에 의존하는 청크는 페이지 전체가 완벽하게 작성되었더라도 이 검색 단계에서 혼란을 주거나 제외될 수 있습니다. 이 도구는 그 청킹 과정을 재현하고, 생성된 각 구절의 자기완결성(self-containment)을 채점합니다.

How chunks are built and scored

Nothing is guessed from a template — every chunk comes from your own pasted text, split the way a heading-aware ingestion pipeline would split it (roughly 150-240 words per chunk, breaking at headings first).

Heading-anchored chunking

Paragraphs are grouped under their nearest heading into passages of roughly 150-240 words each. A single paragraph longer than that is flagged on its own, since an automatic chunker has no natural break point inside it.

Self-containment checks

Each chunk's opening sentence is checked for a dangling pronoun ("This", "It", "They"...) with no antecedent inside that same chunk, and its full text is scanned for backward-looking phrases like "as mentioned above" that only make sense next to a chunk the reader will never see.

Cross-chunk acronym tracking

Every acronym or abbreviation is tracked across the whole document. If it is spelled out in one chunk but reused unexplained in another, that second chunk is flagged — a retrieval system will show it alone, without the definition.

Length and mid-thought cutoffs

Chunks under 40 words are usually too thin to carry a complete idea; chunks that end on a colon or a conjunction ("...and", "...because") read as cut off mid-sentence to anyone shown only that passage.

자주 묻는 질문

가독성이나 키워드 밀도 검사기와 같은 건가요?

아닙니다. 가독성은 사람이 텍스트를 편안하게 읽을 수 있는지를 측정하지만, 이 도구는 페이지 맥락 없이 완전히 단독으로 표시된 하나의 구절이 여전히 의미가 통하는지를 측정합니다. 이는 AI 답변 엔진이 독립된 청크를 검색하고 표시하기 때문에만 중요해지는 별개의 문제입니다.

What counts as a "citation-ready" chunk?

A chunk scores 100 minus penalties for each issue found (a severe issue like a dangling pronoun costs more than a minor one like running long). It is marked citation-ready once it scores 80 or higher with no severe issues.

My content reads fine to a human — why are chunks flagged?

A full page reads fine because a human keeps context across paragraphs automatically. A retrieval system does not: it stores and shows one chunk in isolation, so anything that depends on an earlier sentence, an earlier chunk, or an earlier definition can fail silently even though the page itself is well written.

Does this tool send my text anywhere?

Your pasted text is sent once, over HTTPS, to our server to run the chunking and scoring (needed to keep the logic server-side and consistent), and is not stored beyond the request.