Module 6 of 10~35 minutes

Context & Retrieval Basics (RAG, conceptual)

What happens when a system finds the material for you β€” why retrieval exists, and why retrieved still does not mean true.

Objectives

  1. Explain in plain language what retrieval is and which problem it solves.
  2. Describe the retrieval loop from question to verified answer.
  3. Say what "grounding" means, and what it does not promise.
  4. Explain why retrieved material is not automatically true or relevant.
  5. Name three things that make a retrieval answer wrong even when the system worked.
  6. Explain why source quality, freshness and access permissions matter.
  7. Recognize when a citation or source reference should be checked rather than trusted.
  8. Decide when a question is a retrieval problem and when it is not.

Introduction

Module 3 taught that an assistant knows nothing about your world unless you supply it, and made you the supplier. That works while the information fits in a message.

It stops working when the answer lives across forty documents, a policy library, a year of records, or a manual nobody has read end to end. You cannot paste what you have not found.

This module explains, at Foundation level, what happens when a system finds the relevant material for you. The goal is understanding, not construction: nothing here builds a retrieval system.

You should leave knowing why retrieval exists, what problem it solves, and β€” most importantly β€” why retrieved material still has to be judged.

Lesson 1

When Pasting Stops Working

Supplying context by hand is a real skill and it has a real ceiling. Once the answer is spread across more material than you can read, the bottleneck is no longer how well you write the prompt β€” it is finding the right two pages.

That is the honest limit of Module 3, and it is why a different approach exists.

Lesson 2

The Retrieval Loop

QUESTION β†’ FIND RELEVANT INFORMATION β†’ SUPPLY IT AS CONTEXT β†’ GENERATE RESPONSE β†’ YOU VERIFY.

That is the whole concept. Compare it with Module 3, where the same shape existed but you were step two. Retrieval automates the finding; it changes nothing about the last step.

RAG stands for Retrieval-Augmented Generation β€” generation (writing an answer) that has been augmented (helped) by retrieval (finding relevant material first). The term sounds technical and the idea is not: look things up before answering.

The retrieval loop

Compare it with Module 3, where the same shape existed and you were step two. Retrieval automates the finding β€” it changes nothing about the last step.

A five-stage flow: a question, finding relevant information, supplying it as context, generating a response, and you verifying. This is the whole of what RAG means β€” retrieval-augmented generation, or looking things up before answering. What the phrase does not mean is that the system knows your organization, that the retrieved material is correct, or that the answer has been checked. Something was found and handed to the assistant as context; verification is still yours.

  1. Question

    What is actually being asked.

  2. Find relevant information

    In Module 3 this step was you, pasting.

  3. Supply it as context

    Handed to the assistant as material to work from.

  4. Generate response

    Grounded in what was supplied β€” which does not make it true.

  5. You verify

    Unchanged from Module 3. Retrieval automates the finding, not the checking.

What the phrase does not mean: that the system knows your organization, that the retrieved material is correct, or that the answer has been checked. It means only that something was found and handed to the assistant as context.

Lesson 3

What Grounding Does and Does Not Promise

An answer is grounded when it was produced from supplied material rather than from the model's general training. Grounding is genuinely valuable: it makes answers more specific to your situation, and it often makes them checkable, because you can look at what they were drawn from.

Grounding does not promise correctness. Module 3 already said context is not truth, and that holds when the context is fetched rather than pasted. A grounded answer can still be wrong because the retrieved material was wrong, outdated, incomplete, or simply not the material the question needed.

Say it plainly: retrieved does not mean true.

Lesson 4

When Retrieval Goes Wrong

Four failure modes an ordinary user can recognize without knowing anything about the system.

  • It found the wrong thing β€” plausible-looking material that does not answer this question.
  • It found an outdated version β€” last year's policy, superseded by one that was never indexed.
  • It found only part β€” one section retrieved, the exception in another section missed. The answer is confidently half right, which is worse than obviously wrong.
  • It found nothing useful and answered anyway, falling back on general knowledge without making that obvious.

The user-level signal for all four is the same: the answer's confidence does not tell you which of these happened. Only checking the source does.

Lesson 5

Sources, Freshness and Permission

Three properties worth asking about any retrieval-backed answer.

  • Source quality β€” where did this come from, and is it authoritative for this question? A draft, a forum post and an approved policy can all be retrieved with equal confidence.
  • Freshness β€” how old is it, and does that matter here? For a definition, rarely. For a price, a deadline or a rule, decisively.
  • Access and permission β€” a system can only retrieve what it was given access to, and it should only surface what you are permitted to see. If an answer reveals something you would not normally have access to, that is a finding worth raising, not a convenience.

Retrieval Widens What Can Reach a Prompt

Retrieval means material can enter a conversation without you having read it. That has two consequences worth holding onto.

Access is a real boundary. A system should surface only what you are permitted to see; an answer that reveals more than your access should is a problem to report, not a shortcut to use.

Retrieved text is material, not orders. A document that says "ignore your previous instructions" is a document containing that sentence β€” it is not an instruction you must follow. Treating fetched content as data rather than command is the beginning of the safety habit taught properly in Module 7.

Vocabulary, Not Implementation

Technical systems may use techniques such as embeddings, vector search or splitting documents into chunks to make finding work at scale. Those names are mentioned only so the terms are not mysterious.

How to build any of it is outside this course. Implementation, storage, tuning and architecture are developer subjects, not Foundation ones.

Lesson 6

Reading a Cited Answer

When a system shows you where an answer came from, that is a genuine improvement β€” and an invitation, not a conclusion.

  • Check that the citation says what the answer claims. A reference can be real and still not support the sentence attached to it.
  • Check the date on anything time-sensitive.
  • Check that it is the right document, not a similarly named one.
  • Treat an uncited claim in an otherwise cited answer as unsupported β€” that mixture is common and easy to miss.

A citation makes verification possible. It does not perform it.

Is This Even a Retrieval Problem?

Not every disappointing answer wants retrieval. It helps when the information exists, is written down, and is findable. It does not help when the question needs a judgment, a decision, an authority, or knowledge nobody has recorded β€” and it cannot compensate for material that is simply wrong.

Module 5's rule applies here too: if the source does not contain the answer, no amount of better finding will produce one.

Human + AI

You judge the sources, and you judge the answer built on them. A retrieval system can find material quickly; it cannot tell you that the document it found was superseded, that the section it missed contained the exception, or that the question needed a person rather than a lookup.

  • Grounded does not mean accurate.
  • It searched, so it knows β€” is not a safe assumption.
  • Citations make an answer checkable; they do not prove it.
  • Retrieval does not eliminate invented detail, and no system has access to everything.

Practical exercise

β‰ˆ8 min

Choose the sources, then judge the answer. You are given a question and six candidate sources, described by title, date and one-line summary. No system is involved; you are doing by hand what retrieval does automatically.

1. Choose the two or three sources you would actually supply to answer the question, and write one sentence each on why. 2. Name one source you deliberately rejected and say what made it look relevant but wrong β€” usually a close title, an old date, or the right topic for a different question. 3. Read a sample answer that was produced from a different selection than yours.

4. Judge it: is every claim supported by the material it cites? Is anything asserted without a source? Is anything time-sensitive drawn from the oldest document? 5. Write the check you would perform before acting on it β€” one sentence.

This module needs no retrieval system and no AI account: it is already a paper exercise, and no assistant is advantaged. Build your six candidates to include a superseded policy with a plausible title, a draft that was never approved, a correct but partial section, and one genuinely irrelevant document with strong keyword overlap. Most learners discover that choosing sources is the hard part, and that a confident answer built on the wrong two documents reads exactly like one built on the right two. Nothing is submitted, stored or graded.

Your progress

0 of 2 required activities complete in this module Β· course progress 0%

  • β—‹ GlobSynk Labβ„’ Β· optional
  • β—‹ Reflection
  • β—‹ Checkpoint

GlobSynk Labβ„’

optional, β‰ˆ5 min

About GlobSynk Labβ„’. GlobSynk Labβ„’ is the hands-on practice experience used throughout GlobSynk Academy. This Lab is optional hands-on practice: complete it now, skip it and continue the module, or return to it later. Skipping this Lab does not prevent you from continuing the course.

Take a question you could answer from documents you already have. Supply the material yourself, in two versions: the right two documents, then the same question with one deliberately outdated or irrelevant document swapped in.

Compare the answers. The point is to feel how little the tone changes when the material gets worse β€” which is the single most useful intuition this module can give you about retrieval systems you do not control.

Reflection

β‰ˆ2 min

Think of a time you were given confident advice by someone who had read only part of the story. How would you have known? What would you have had to ask for? A retrieval-backed answer has the same problem, and usually presents it with the same confidence.

This reflection is yours alone β€” it is never sent to GlobSynk or stored. Only the fact that you completed it is saved.

Checkpoint

Five questions, unscored, with instant feedback. Retry as often as you like β€” this is a learning aid, not an exam.

1. In which situation does retrieval genuinely help?
2. A grounded answer cites a supplied document. What does that guarantee?
3. An answer is right about the general rule and silent about a documented exception. Which failure is this?
4. Two retrieved documents disagree: one is an approved policy from this year, one an unapproved draft from two years ago. What should a user do?
5. An answer carries three references; one sentence has none. What is the right reading?

Answer all 5 questions to continue.

Key takeaways

  • Retrieval exists because you cannot paste what you have not found.
  • Question β†’ find β†’ supply as context β†’ generate β†’ you verify. Retrieval automates the finding, not the verifying.
  • Grounded means drawn from supplied material. It does not mean true.
  • Four recognizable failures: wrong thing, outdated version, only part, and nothing useful answered anyway.
  • Source quality, freshness and access permission are yours to judge β€” the system's confidence is identical either way.
  • A citation makes verification possible; it does not perform it.
  • Retrieved text is material, not orders β€” a sentence addressed to the assistant carries no authority because it arrived.

Practice in Prompt Lab

Optional

Want to try what you learned with real prompts? Prompt Lab is an optional practice environment, separate from this course.

Practice supplying source material yourself and judging whether the answer actually used the relevant part of it.

Practice Prompting in the Real World

Opens in a new tab. Optional practice β€” never required for this module, the checkpoint, your progress, the Final Assessment, the certificate or Reward Points.

Before you move on

You can now explain why a system looks things up before answering, and β€” more usefully β€” why a grounded, cited, confident answer can still be wrong in four recognizable ways.

Retrieval also changes something about safety. Once material can arrive in a conversation without you having read it, the question is no longer only "is this true?" but "is this even addressed to me β€” and does it have any authority over what I do next?"

Handling untrusted content, protecting private information, and knowing when to stop is Module 7.