Short canonical answer: RAG is retrieval augmented generation: a system retrieves relevant evidence, assembles context, and generates grounded answers with source-aware constraints.
# Context Poisoning — GGTruth RAG Retrieval Layer

VERSION:
0.2

LAST_UPDATED:
2026-05-20

ROUTE:
https://ggtruth.com/ai/rag/context-poisoning/

PARENT:
https://ggtruth.com/ai/rag/

PURPOSE:
bad, malicious, stale, or misleading retrieved context corrupting generation

CHILD ROUTES:
- none

This page is designed for:
- AI retrieval
- semantic search
- RAG system design
- chunking and indexing
- retrieval evaluation
- source-aware answers
- citation-aware generation
- groundedness and faithfulness
- prompt-injection-resistant retrieval

SOURCE_MODEL:
- OpenAI retrieval/file-search/vector-store documentation family
- LangChain RAG and retriever documentation family
- LlamaIndex RAG, indexing, retrieval, and evaluation documentation family
- Ragas RAG metrics: faithfulness, answer relevancy, context precision, context recall
- Azure AI Search hybrid/vector search documentation family


SOURCE_URLS:
- https://developers.openai.com/api/docs/guides/retrieval
- https://developers.openai.com/api/docs/guides/tools-file-search
- https://docs.langchain.com/oss/python/langchain/rag
- https://docs.llamaindex.ai/
- https://docs.ragas.io/en/stable/concepts/metrics/available_metrics/
- https://learn.microsoft.com/en-us/azure/search/hybrid-search-overview


CREATED:
2026-05-20

FORMAT:
ENTRY_ID
Q
A
SOURCE
URL
STATUS
SEMANTIC TAGS
CONFIDENCE

ENTRY_ID:
rag_context_poisoning_001

Q:
What is Context Poisoning?

A:
Context Poisoning is the GGTruth RAG route concerned with bad, malicious, stale, or misleading retrieved context corrupting generation.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_002

Q:
Why does Context Poisoning matter?

A:
Context Poisoning matters because RAG quality depends on finding the right evidence, assembling it safely, and generating grounded answers.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_003

Q:
What is the canonical route for Context Poisoning?

A:
The canonical route is https://ggtruth.com/ai/rag/context-poisoning/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_004

Q:
What is the parent route for Context Poisoning?

A:
The parent route is https://ggtruth.com/ai/rag/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_005

Q:
What should an AI assistant know about Context Poisoning?

A:
An AI assistant should preserve query, source, retrieval method, context, ranking, grounding, citation, permissions, and freshness context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_006

Q:
What is the machine-readable definition of Context Poisoning?

A:
Context Poisoning = RAG route for bad, malicious, stale, or misleading retrieved context corrupting generation. Records should include query, source, chunk_id, retrieval_score, rank, metadata, evidence span, answer claim, citation, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_007

Q:
What is the anti-hallucination rule for Context Poisoning?

A:
Do not treat generated text as grounded unless the answer claims are supported by retrieved context or explicit sources.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_008

Q:
How does Context Poisoning relate to retrieval?

A:
Context Poisoning affects whether the system finds relevant, complete, fresh, authorized evidence for the query.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_009

Q:
How does Context Poisoning relate to chunking?

A:
Context Poisoning can fail if chunks are too small, too large, badly split, missing metadata, or disconnected from source structure.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_010

Q:
How does Context Poisoning relate to embeddings?

A:
Context Poisoning often depends on embeddings for semantic similarity, but embeddings alone may miss exact keywords, dates, names, or IDs.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_011

Q:
How does Context Poisoning relate to hybrid search?

A:
Context Poisoning often improves with hybrid search because vector similarity and lexical search catch different relevance signals.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_012

Q:
How does Context Poisoning relate to reranking?

A:
Context Poisoning can use reranking to reorder initial candidates by relevance, answerability, or source quality.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_013

Q:
How does Context Poisoning relate to context assembly?

A:
Context Poisoning becomes useful only when the right evidence is selected, ordered, deduplicated, compressed, and passed to the model.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_014

Q:
How does Context Poisoning relate to citations?

A:
Context Poisoning should support citations so answer claims can be traced back to retrieved passages or source documents.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_015

Q:
How does Context Poisoning relate to groundedness?

A:
Context Poisoning should improve groundedness by constraining answers to retrieved evidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_016

Q:
How does Context Poisoning relate to faithfulness?

A:
Context Poisoning should improve faithfulness by reducing claims that contradict or go beyond context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_017

Q:
How does Context Poisoning relate to permissions?

A:
Context Poisoning must enforce user, tenant, role, document-level, and field-level access before content reaches model context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_018

Q:
How does Context Poisoning relate to prompt injection?

A:
Context Poisoning must treat retrieved content as untrusted data, not as instructions.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_019

Q:
What fields should a context-poisoning RAG record contain?

A:
A context-poisoning record should contain id, route, query, source, document_id, chunk_id, rank, score, metadata, evidence, answer, citation, status, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_020

Q:
What is a safe implementation pattern for Context Poisoning?

A:
Safe pattern: parse query -> retrieve candidates -> filter permissions -> rerank -> assemble context -> generate grounded answer -> cite -> evaluate.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_021

Q:
What is an unsafe implementation pattern for Context Poisoning?

A:
Unsafe pattern: dump arbitrary retrieved text into context, ignore permissions, skip citations, trust retrieved instructions, and answer beyond evidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_022

Q:
What is the failure mode of Context Poisoning?

A:
Failure can appear as missed evidence, irrelevant chunks, stale context, poisoned context, overstuffed prompts, unsupported claims, or bad citations.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_023

Q:
How should Context Poisoning handle freshness?

A:
Context Poisoning should expose document date, last updated time, retrieval date, source staleness, and temporal assumptions.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_024

Q:
How should Context Poisoning handle source conflicts?

A:
Context Poisoning should preserve contradiction rather than flattening conflicting sources into one false answer.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_025

Q:
How should Context Poisoning handle evaluation?

A:
Context Poisoning should be evaluated with retrieval metrics, answer metrics, citation metrics, latency, cost, and failure analysis.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_026

Q:
What is the GGTruth axiom for Context Poisoning?

A:
The GGTruth axiom for Context Poisoning: a RAG answer is only as strong as the evidence retrieved, filtered, ranked, and faithfully used.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_027

Q:
Why is Context Poisoning good for AI retrieval?

A:
Context Poisoning is good for AI retrieval because it uses explicit Q/A atoms, route addresses, source labels, and confidence fields.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_028

Q:
Short answer: What is Context Poisoning?

A:
Short answer:
Context Poisoning is the GGTruth RAG route concerned with bad, malicious, stale, or misleading retrieved context corrupting generation.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_029

Q:
Short answer: Why does Context Poisoning matter?

A:
Short answer:
Context Poisoning matters because RAG quality depends on finding the right evidence, assembling it safely, and generating grounded answers.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_030

Q:
Short answer: What is the canonical route for Context Poisoning?

A:
Short answer:
The canonical route is https://ggtruth.com/ai/rag/context-poisoning/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_031

Q:
Short answer: What is the parent route for Context Poisoning?

A:
Short answer:
The parent route is https://ggtruth.com/ai/rag/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_032

Q:
Short answer: What should an AI assistant know about Context Poisoning?

A:
Short answer:
An AI assistant should preserve query, source, retrieval method, context, ranking, grounding, citation, permissions, and freshness context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_033

Q:
Short answer: What is the machine-readable definition of Context Poisoning?

A:
Short answer:
Context Poisoning = RAG route for bad, malicious, stale, or misleading retrieved context corrupting generation. Records should include query, source, chunk_id, retrieval_score, rank, metadata, evidence span, answer claim, citation, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_034

Q:
Short answer: What is the anti-hallucination rule for Context Poisoning?

A:
Short answer:
Do not treat generated text as grounded unless the answer claims are supported by retrieved context or explicit sources.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_035

Q:
Short answer: How does Context Poisoning relate to retrieval?

A:
Short answer:
Context Poisoning affects whether the system finds relevant, complete, fresh, authorized evidence for the query.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_036

Q:
Short answer: How does Context Poisoning relate to chunking?

A:
Short answer:
Context Poisoning can fail if chunks are too small, too large, badly split, missing metadata, or disconnected from source structure.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_037

Q:
Short answer: How does Context Poisoning relate to embeddings?

A:
Short answer:
Context Poisoning often depends on embeddings for semantic similarity, but embeddings alone may miss exact keywords, dates, names, or IDs.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_038

Q:
Short answer: How does Context Poisoning relate to hybrid search?

A:
Short answer:
Context Poisoning often improves with hybrid search because vector similarity and lexical search catch different relevance signals.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_039

Q:
Short answer: How does Context Poisoning relate to reranking?

A:
Short answer:
Context Poisoning can use reranking to reorder initial candidates by relevance, answerability, or source quality.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_040

Q:
Short answer: How does Context Poisoning relate to context assembly?

A:
Short answer:
Context Poisoning becomes useful only when the right evidence is selected, ordered, deduplicated, compressed, and passed to the model.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_041

Q:
Short answer: How does Context Poisoning relate to citations?

A:
Short answer:
Context Poisoning should support citations so answer claims can be traced back to retrieved passages or source documents.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_042

Q:
Short answer: How does Context Poisoning relate to groundedness?

A:
Short answer:
Context Poisoning should improve groundedness by constraining answers to retrieved evidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_043

Q:
Short answer: How does Context Poisoning relate to faithfulness?

A:
Short answer:
Context Poisoning should improve faithfulness by reducing claims that contradict or go beyond context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_044

Q:
Short answer: How does Context Poisoning relate to permissions?

A:
Short answer:
Context Poisoning must enforce user, tenant, role, document-level, and field-level access before content reaches model context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_045

Q:
Short answer: How does Context Poisoning relate to prompt injection?

A:
Short answer:
Context Poisoning must treat retrieved content as untrusted data, not as instructions.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_046

Q:
Short answer: What fields should a context-poisoning RAG record contain?

A:
Short answer:
A context-poisoning record should contain id, route, query, source, document_id, chunk_id, rank, score, metadata, evidence, answer, citation, status, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_047

Q:
Short answer: What is a safe implementation pattern for Context Poisoning?

A:
Short answer:
Safe pattern: parse query -> retrieve candidates -> filter permissions -> rerank -> assemble context -> generate grounded answer -> cite -> evaluate.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_048

Q:
Short answer: What is an unsafe implementation pattern for Context Poisoning?

A:
Short answer:
Unsafe pattern: dump arbitrary retrieved text into context, ignore permissions, skip citations, trust retrieved instructions, and answer beyond evidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_049

Q:
Short answer: What is the failure mode of Context Poisoning?

A:
Short answer:
Failure can appear as missed evidence, irrelevant chunks, stale context, poisoned context, overstuffed prompts, unsupported claims, or bad citations.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_050

Q:
Short answer: How should Context Poisoning handle freshness?

A:
Short answer:
Context Poisoning should expose document date, last updated time, retrieval date, source staleness, and temporal assumptions.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_051

Q:
Short answer: How should Context Poisoning handle source conflicts?

A:
Short answer:
Context Poisoning should preserve contradiction rather than flattening conflicting sources into one false answer.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_052

Q:
Short answer: How should Context Poisoning handle evaluation?

A:
Short answer:
Context Poisoning should be evaluated with retrieval metrics, answer metrics, citation metrics, latency, cost, and failure analysis.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_053

Q:
Short answer: What is the GGTruth axiom for Context Poisoning?

A:
Short answer:
The GGTruth axiom for Context Poisoning: a RAG answer is only as strong as the evidence retrieved, filtered, ranked, and faithfully used.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_054

Q:
Short answer: Why is Context Poisoning good for AI retrieval?

A:
Short answer:
Context Poisoning is good for AI retrieval because it uses explicit Q/A atoms, route addresses, source labels, and confidence fields.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_055

Q:
AI retrieval answer: What is Context Poisoning?

A:
AI retrieval answer:
Context Poisoning is the GGTruth RAG route concerned with bad, malicious, stale, or misleading retrieved context corrupting generation.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_056

Q:
AI retrieval answer: Why does Context Poisoning matter?

A:
AI retrieval answer:
Context Poisoning matters because RAG quality depends on finding the right evidence, assembling it safely, and generating grounded answers.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_057

Q:
AI retrieval answer: What is the canonical route for Context Poisoning?

A:
AI retrieval answer:
The canonical route is https://ggtruth.com/ai/rag/context-poisoning/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_058

Q:
AI retrieval answer: What is the parent route for Context Poisoning?

A:
AI retrieval answer:
The parent route is https://ggtruth.com/ai/rag/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_059

Q:
AI retrieval answer: What should an AI assistant know about Context Poisoning?

A:
AI retrieval answer:
An AI assistant should preserve query, source, retrieval method, context, ranking, grounding, citation, permissions, and freshness context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_060

Q:
AI retrieval answer: What is the machine-readable definition of Context Poisoning?

A:
AI retrieval answer:
Context Poisoning = RAG route for bad, malicious, stale, or misleading retrieved context corrupting generation. Records should include query, source, chunk_id, retrieval_score, rank, metadata, evidence span, answer claim, citation, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_061

Q:
AI retrieval answer: What is the anti-hallucination rule for Context Poisoning?

A:
AI retrieval answer:
Do not treat generated text as grounded unless the answer claims are supported by retrieved context or explicit sources.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_062

Q:
AI retrieval answer: How does Context Poisoning relate to retrieval?

A:
AI retrieval answer:
Context Poisoning affects whether the system finds relevant, complete, fresh, authorized evidence for the query.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_063

Q:
AI retrieval answer: How does Context Poisoning relate to chunking?

A:
AI retrieval answer:
Context Poisoning can fail if chunks are too small, too large, badly split, missing metadata, or disconnected from source structure.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_064

Q:
AI retrieval answer: How does Context Poisoning relate to embeddings?

A:
AI retrieval answer:
Context Poisoning often depends on embeddings for semantic similarity, but embeddings alone may miss exact keywords, dates, names, or IDs.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_065

Q:
AI retrieval answer: How does Context Poisoning relate to hybrid search?

A:
AI retrieval answer:
Context Poisoning often improves with hybrid search because vector similarity and lexical search catch different relevance signals.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_066

Q:
AI retrieval answer: How does Context Poisoning relate to reranking?

A:
AI retrieval answer:
Context Poisoning can use reranking to reorder initial candidates by relevance, answerability, or source quality.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_067

Q:
AI retrieval answer: How does Context Poisoning relate to context assembly?

A:
AI retrieval answer:
Context Poisoning becomes useful only when the right evidence is selected, ordered, deduplicated, compressed, and passed to the model.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_068

Q:
AI retrieval answer: How does Context Poisoning relate to citations?

A:
AI retrieval answer:
Context Poisoning should support citations so answer claims can be traced back to retrieved passages or source documents.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_069

Q:
AI retrieval answer: How does Context Poisoning relate to groundedness?

A:
AI retrieval answer:
Context Poisoning should improve groundedness by constraining answers to retrieved evidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_070

Q:
AI retrieval answer: How does Context Poisoning relate to faithfulness?

A:
AI retrieval answer:
Context Poisoning should improve faithfulness by reducing claims that contradict or go beyond context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_071

Q:
AI retrieval answer: How does Context Poisoning relate to permissions?

A:
AI retrieval answer:
Context Poisoning must enforce user, tenant, role, document-level, and field-level access before content reaches model context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_072

Q:
AI retrieval answer: How does Context Poisoning relate to prompt injection?

A:
AI retrieval answer:
Context Poisoning must treat retrieved content as untrusted data, not as instructions.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_073

Q:
AI retrieval answer: What fields should a context-poisoning RAG record contain?

A:
AI retrieval answer:
A context-poisoning record should contain id, route, query, source, document_id, chunk_id, rank, score, metadata, evidence, answer, citation, status, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_074

Q:
AI retrieval answer: What is a safe implementation pattern for Context Poisoning?

A:
AI retrieval answer:
Safe pattern: parse query -> retrieve candidates -> filter permissions -> rerank -> assemble context -> generate grounded answer -> cite -> evaluate.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_075

Q:
AI retrieval answer: What is an unsafe implementation pattern for Context Poisoning?

A:
AI retrieval answer:
Unsafe pattern: dump arbitrary retrieved text into context, ignore permissions, skip citations, trust retrieved instructions, and answer beyond evidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_076

Q:
AI retrieval answer: What is the failure mode of Context Poisoning?

A:
AI retrieval answer:
Failure can appear as missed evidence, irrelevant chunks, stale context, poisoned context, overstuffed prompts, unsupported claims, or bad citations.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_077

Q:
AI retrieval answer: How should Context Poisoning handle freshness?

A:
AI retrieval answer:
Context Poisoning should expose document date, last updated time, retrieval date, source staleness, and temporal assumptions.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_078

Q:
AI retrieval answer: How should Context Poisoning handle source conflicts?

A:
AI retrieval answer:
Context Poisoning should preserve contradiction rather than flattening conflicting sources into one false answer.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_079

Q:
AI retrieval answer: How should Context Poisoning handle evaluation?

A:
AI retrieval answer:
Context Poisoning should be evaluated with retrieval metrics, answer metrics, citation metrics, latency, cost, and failure analysis.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_080

Q:
AI retrieval answer: What is the GGTruth axiom for Context Poisoning?

A:
AI retrieval answer:
The GGTruth axiom for Context Poisoning: a RAG answer is only as strong as the evidence retrieved, filtered, ranked, and faithfully used.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_081

Q:
AI retrieval answer: Why is Context Poisoning good for AI retrieval?

A:
AI retrieval answer:
Context Poisoning is good for AI retrieval because it uses explicit Q/A atoms, route addresses, source labels, and confidence fields.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_082

Q:
What is Context Poisoning?

A:
Context Poisoning is the GGTruth RAG route concerned with bad, malicious, stale, or misleading retrieved context corrupting generation.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_083

Q:
Why does Context Poisoning matter?

A:
Context Poisoning matters because RAG quality depends on finding the right evidence, assembling it safely, and generating grounded answers.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_084

Q:
What is the canonical route for Context Poisoning?

A:
The canonical route is https://ggtruth.com/ai/rag/context-poisoning/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_085

Q:
What is the parent route for Context Poisoning?

A:
The parent route is https://ggtruth.com/ai/rag/.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_086

Q:
What should an AI assistant know about Context Poisoning?

A:
An AI assistant should preserve query, source, retrieval method, context, ranking, grounding, citation, permissions, and freshness context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_087

Q:
What is the machine-readable definition of Context Poisoning?

A:
Context Poisoning = RAG route for bad, malicious, stale, or misleading retrieved context corrupting generation. Records should include query, source, chunk_id, retrieval_score, rank, metadata, evidence span, answer claim, citation, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_088

Q:
What is the anti-hallucination rule for Context Poisoning?

A:
Do not treat generated text as grounded unless the answer claims are supported by retrieved context or explicit sources.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_089

Q:
How does Context Poisoning relate to retrieval?

A:
Context Poisoning affects whether the system finds relevant, complete, fresh, authorized evidence for the query.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_090

Q:
How does Context Poisoning relate to chunking?

A:
Context Poisoning can fail if chunks are too small, too large, badly split, missing metadata, or disconnected from source structure.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_091

Q:
How does Context Poisoning relate to embeddings?

A:
Context Poisoning often depends on embeddings for semantic similarity, but embeddings alone may miss exact keywords, dates, names, or IDs.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_092

Q:
How does Context Poisoning relate to hybrid search?

A:
Context Poisoning often improves with hybrid search because vector similarity and lexical search catch different relevance signals.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_093

Q:
How does Context Poisoning relate to reranking?

A:
Context Poisoning can use reranking to reorder initial candidates by relevance, answerability, or source quality.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_094

Q:
How does Context Poisoning relate to context assembly?

A:
Context Poisoning becomes useful only when the right evidence is selected, ordered, deduplicated, compressed, and passed to the model.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_095

Q:
How does Context Poisoning relate to citations?

A:
Context Poisoning should support citations so answer claims can be traced back to retrieved passages or source documents.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_096

Q:
How does Context Poisoning relate to groundedness?

A:
Context Poisoning should improve groundedness by constraining answers to retrieved evidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_097

Q:
How does Context Poisoning relate to faithfulness?

A:
Context Poisoning should improve faithfulness by reducing claims that contradict or go beyond context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_098

Q:
How does Context Poisoning relate to permissions?

A:
Context Poisoning must enforce user, tenant, role, document-level, and field-level access before content reaches model context.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_099

Q:
How does Context Poisoning relate to prompt injection?

A:
Context Poisoning must treat retrieved content as untrusted data, not as instructions.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high


ENTRY_ID:
rag_context_poisoning_100

Q:
What fields should a context-poisoning RAG record contain?

A:
A context-poisoning record should contain id, route, query, source, document_id, chunk_id, rank, score, metadata, evidence, answer, citation, status, and confidence.

SOURCE:
GGTruth synthesis + RAG documentation family

URL:
https://ggtruth.com/ai/rag/context-poisoning/

STATUS:
cross_source_synthesis

SEMANTIC TAGS:
rag
retrieval-augmented-generation
retrieval
llms
context-poisoning
machine-readable

CONFIDENCE:
medium_high