Skip to main content
Knowledge Encyclopedia391 terms

Glossary AI & Vibecoding

Fundamental reference guide for the new era of software engineering by Andriy Orlov: autonomous agents, loop engineering, Model Context Protocol, context scaling, VPS infrastructure, and burnout prevention.

A

EN
/ 4 terms

C

EN
/ 14 terms
Prompts & RAG

Chain of Thought (CoT)

A methodology that prompts a language model to generate sequential intermediate reasoning steps before producing a final answer, converting additional tokens (Test-Time Compute) into quality and accuracy of the output.

3 FAQ4 rel.Read
Prompts & RAG

Chunking Documents: A Beginner's Guide

The technique of breaking large documents (PDFs, books, long reads) into smaller logical text blocks (chunks of 300–500 tokens) with overlap. This ensures high search accuracy and prevents context loss at the seams.

3 FAQ3 rel.Read
Prompts & RAG

Claude Projects (Workspaces with Custom Knowledge Base)

A workspace organization tool in Claude by Anthropic. It allows the creation of dedicated workspaces for each task, uploading up to 200,000 tokens of internal documentation, and sharing them with colleagues.

3 FAQ3 rel.Read
Prompts & RAG

ColBERT & Late Interaction Retrieval

The neural search architecture compares contextual embeddings of each individual query token with document tokens (Late Interaction), surpassing classical Dense vectors in accuracy.

3 FAQ4 rel.Read
Prompts & RAG

Constrained Decoding & Structured Outputs

A hardware and algorithmic constraint on token generation by language models at the inference level, mathematically ensuring 100% compliance with JSON Schema or Zod types.

3 FAQ4 rel.Read
Prompts & RAG

Context Distillation & Token Squeezing

Methods for automatically removing excess words, syntactic noise, formatting spaces, and outdated messages before sending prompts to the model, optimizing budget and accelerating inference.

3 FAQ4 rel.Read
Prompts & RAG

Context Poisoning in Knowledge Bases

A cyber threat to RAG systems where an attacker injects falsified documents, misleading instructions, or hidden prompt injections into a shared knowledge base (Notion, Confluence, Google Drive). During queries, the system retrieves poisoned context, leading the bot to provide harmful advice or disclose secrets.

3 FAQ3 rel.Read
Prompts & RAG

Context Rot & Attention Decay

Systemic degradation of accuracy, instruction adherence, and logical consistency in LLMs as dialog noise, outdated code drafts, and compiler outputs accumulate in the working context window.

3 FAQ4 rel.Read
Prompts & RAG

Context Window

The maximum operational token capacity that a language model can simultaneously hold in the Self-Attention mechanism and KV Cache memory during a single inference request.

3 FAQ4 rel.Read
Prompts & RAG

Context Window Overflow & Compaction

Engineering patterns to prevent catastrophic failures when context limits are reached: Rolling Summaries, state folding, and selective eviction of stale history.

3 FAQ4 rel.Read
Prompts & RAG

Context Window Size (Current Conversation Memory)

The maximum amount of text (in tokens) that a language model can simultaneously retain in memory during an ongoing conversation. It determines the length of documents that can be loaded at once without loss of content.

3 FAQ3 rel.Read
Prompts & RAG

Copyright and AI

The legal status of intellectual property for content generated by neural networks. Precedents from the US Copyright Office and EU: lack of copyright on pure generative outputs, the status of training on third-party works (Fair Use), and licenses for open models.

3 FAQ3 rel.Read
Prompts & RAG

Cosine Similarity

A mathematical metric that measures the angle between two vectors in a multidimensional space. It indicates the degree of semantic similarity between two texts, ranging from -1 (opposite) to +1 (complete synonyms), while ignoring sentence length.

3 FAQ3 rel.Read
Prompts & RAG

Cross-Encoder Reranking

A two-stage retrieval methodology in RAG systems: a fast initial candidate selection (Bi-Encoder / BM25) followed by precise ranking through a fully-connected cross-encoder model (Cross-Encoder / Cohere Rerank / BGE-Reranker).

3 FAQ4 rel.Read

D

EN
/ 3 terms

E

EN
/ 3 terms

F

EN
/ 2 terms

G

EN
/ 2 terms

H

EN
/ 6 terms
Prompts & RAG

Hallucination Risks in Real-World Tasks

An analysis of the practical consequences and legal risks arising from blind trust in fabricated facts and false sources generated by language models in financial reports, legal claims, and medical advice.

3 FAQ3 rel.Read
Prompts & RAG

Hierarchical Chunking (Parent-Child)

An advanced document slicing strategy (Parent-Document Retriever) for RAG systems. Text is divided into small child chunks for precise vector search, while the entire parent chunk is passed to the model to maintain broad context and preserve meaning.

3 FAQ3 rel.Read
Prompts & RAG

Hierarchical Chunking & Parent-Child Retrieval

An architectural pattern for retrieval where vector matching occurs on concise Child Chunks, while the entire broad Parent Document is pulled into the model context.

3 FAQ4 rel.Read
Prompts & RAG

How to Prevent AI Hallucinations (Prompts Against Hallucinations)

A set of proven engineering techniques and verbal constructs that block the generation of fabricated facts, nonexistent laws, and false citations. Forces artificial intelligence to rely strictly on provided sources.

3 FAQ3 rel.Read
Prompts & RAG

Hybrid Search (Dense + Sparse Search)

The retrieval architecture in modern RAG systems combines semantic vector search (Dense Embeddings) with classical keyword-based full-text indexing (Sparse/BM25) through rank fusion algorithms (RRF).

3 FAQ4 rel.Read
Prompts & RAG

Hybrid Search: Dense + Sparse / BM25

An information retrieval architecture that combines vector semantic search (Dense retrieval — understanding meaning and synonyms) with classical keyword search (Sparse retrieval / BM25). It provides an ideal balance between conceptual understanding and precise searches for articles, serial numbers, or names.

3 FAQ3 rel.Read

I

EN
/ 1 term

J

EN
/ 1 term

K

EN
/ 3 terms

M

EN
/ 4 terms

N

EN
/ 3 terms

P

EN
/ 8 terms
Prompts & RAG

Parsing Complex PDF Documents

Technologies for extracting structured text from complex PDF files (LlamaParse, Unstructured.io, Marker, Nougat). Explains why simple text copying disrupts reading order in two-column documents and how to preserve formulas, charts, and nested tables for RAG systems.

3 FAQ3 rel.Read
Prompts & RAG

Prompt Caching & KV Cache Reuse

A technology utilized by modern inference engines and cloud APIs (Anthropic, OpenAI, DeepSeek, vLLM) that stores precomputed attention matrices (KV Cache) of static prefixes, reducing processing costs by 80–90% and decreasing time to first token (TTFT) by 4–8 times.

3 FAQ4 rel.Read
Prompts & RAG

Prompt Caching Architecture & Economics

A methodology for designing prompts focused on maximizing hardware cache hits for prefixes (Prefix Caching) in Anthropic, OpenAI, and DeepSeek, achieving a 90% cost reduction and 80% speedup.

3 FAQ4 rel.Read
Prompts & RAG

Prompt Chaining Basics for Beginners

A methodology for breaking down complex tasks into a sequence of focused prompts (Prompt Chaining). The output of the first step feeds into the next, ensuring high quality for each segment.

3 FAQ3 rel.Read
Prompts & RAG

Prompt Engineering (Context Architecture & Prompt Engineering)

An engineering discipline focused on structuring system directives, XML markup, semantic delimiters, and examples to achieve deterministic, predictable outcomes from probabilistic models.

3 FAQ4 rel.Read
Prompts & RAG

Prompt Extraction & Inversion Attacks

A methodology for analyzing cyber threats aimed at extracting secret system prompts, proprietary business logic, and hidden instructions through manipulative user queries.

3 FAQ4 rel.Read
Prompts & RAG

Prompt Injection

A critical vulnerability in LLM-based systems (OWASP Top 10 for LLM #1). It arises from the lack of architectural separation between control instructions (Control Plane) and external data (Data Plane), allowing an attacker to hijack model control.

3 FAQ4 rel.Read
Prompts & RAG

Prompt Leakage

A vulnerability in artificial intelligence where users cleverly phrase requests to compel the bot to quote its hidden instructions (System Prompt) verbatim, revealing business logic, behavioral rules, and internal secrets of developers.

3 FAQ3 rel.Read

Q

EN
/ 1 term

R

EN
/ 4 terms

S

EN
/ 6 terms
Prompts & RAG

Self-RAG & Corrective RAG (CRAG)

An adaptive search methodology where the language model autonomously assesses the relevance of retrieved documents, filters out noise, and dynamically reformulates the search query when information is lacking.

3 FAQ4 rel.Read
Prompts & RAG

Self-Reflective Search (Self-RAG & Corrective RAG)

The architectural approach of Self-RAG and Corrective RAG (CRAG) enables a language model to critically assess the relevance and completeness of retrieved documents before generating a response, avoiding blind reliance on initial search results. If the findings are insufficient or dubious, the system automatically reformulates the query and searches again or accesses the open web.

3 FAQ3 rel.Read
Prompts & RAG

Semantic Search: Why Meaning-Based Search Outperforms Traditional Ctrl+F

A technology for information retrieval based on the conceptual content of a query rather than exact letter matches or keywords. It understands synonyms, paraphrasing, spelling errors, and abstract natural language questions.

3 FAQ3 rel.Read
Prompts & RAG

System Instructions (System Prompt and Custom Instructions)

The primary hidden directive from the developer or user (System Message). It establishes fundamental behavioral frameworks, roles, communication styles, and prohibited topics that the model retains throughout the session.

3 FAQ3 rel.Read
Prompts & RAG

System Prompt (System Instructions & Metaprompting)

The primary metacontext block of instructions passed at the zero position of the context window, defining the agent's role, safety rules, available tools, and behavioral boundaries.

3 FAQ4 rel.Read
Prompts & RAG

System Prompt Drift & Degradation

The phenomenon of gradual loss of primary instructions, response style, and security constraints by the language model as the dialogue history expands, along with methods for periodic rule reinjection.

3 FAQ4 rel.Read

T

EN
/ 2 terms

V

EN
/ 3 terms

W

EN
/ 2 terms

Z

EN
/ 2 terms
Andriy Orlov Community

Full Stack of Tools, Tier Lists, and AI Skills

Beyond the glossary, GOTBURNOUT provides frontier AI benchmarks, a catalog of over 100,000 AI Agent Skills, production-ready VPS hardening scripts, and an exclusive Pro developer community.