# πŸ“š Glossary β€” Terms, Symbols, and Short Definitions > **Quick Nav** > [RAG Map 2.0](./rag-architecture-and-recovery.md) Β· > [Retrieval Playbook](./retrieval-playbook.md) Β· > [Patterns](./patterns/README.md) Β· > [Eval](./eval/README.md) --- ## Core instruments - **Ξ”S (delta-S)** β€” *Semantic stress.* `Ξ”S = 1 βˆ’ cos(I, G)` where `I` is item embedding, `G` is ground/anchor. Thresholds: `<0.40` stable Β· `0.40–0.60` transitional Β· `β‰₯0.60` high risk. - **Ξ»_observe** β€” *Layered observability state.* Symbols: `β†’` convergent Β· `←` divergent Β· `<>` recursive Β· `Γ—` chaotic. - **E_resonance** β€” *Coherence indicator.* Rolling mean of |residual| under BBMC; rising E with high Ξ”S β‡’ apply BBCR/BBAM. --- ## Repair operators (WFGY modules) - **BBMC** β€” *Boundary-Bounded Memory Chunks.* Reduce semantic residue vs anchors; align chunks/sections with tasks. - **BBPF** β€” *Branch-Bounded Prompt Frames.* Explore multiple semantic paths safely; stabilize context windows. - **BBCR** β€” *Break-Before-Crash Reset.* Detect collapse, insert bridge node, restart cleanly. - **BBAM** β€” *Attention Modulation.* Reduce variance in attention to avoid entropy melt on long contexts. --- ## Retrieval, ranking & prompting - **RRF (Reciprocal Rank Fusion)** β€” Fuse ranks from multiple retrievers via `1/(k + rank)`. - **MMR (Maximal Marginal Relevance)** β€” Diversify candidates balancing relevance and novelty. - **BM25** β€” Sparse lexical scoring for exact term match; strong for code/IDs. - **HyDE** β€” Hypothetical document expansion; creates a synthetic query/doc to improve recall. - **Cross-encoder reranker** β€” Jointly encodes `[query βŠ• doc]` for precision@k gains. --- ## Patterns (named failure modes) - **SCU (Symbolic Constraint Unlock)** β€” Model merges sources or violates β€œcite-then-explain” schema. Fix: per-source fences + locked schema. - **Query Parsing Split** β€” Dense and sparse retrievers use different analyzers/tokenizers; hybrid breaks. - **Vectorstore Fragmentation** β€” Index contains β€œghost” gaps; facts exist but never retrieved; fix shard/id audits. - **Memory Desync** β€” State flips between sessions/tabs; require `mem_rev`+`mem_hash`. - **Role Drift** β€” Multi-agent persona swap; tag agent IDs and lock via BBCR. --- ## Multi-agent - **Agent boundary** β€” Contract that limits what an agent can read/write; prevents overwrite. - **Ξ”S peer check** β€” Measures divergence between agents’ plans to catch conflicts early. --- ## Data & ops - **Gold set** β€” Small set (10–50) of realistic Q/A with citations; used for CI (recall@50, nDCG@10, Ξ”S). - **Traceability** β€” Provenance from answer β†’ prompt β†’ citations β†’ chunks β†’ source file. --- ## Notation quickies - `I` β€” item (retrieved chunk) embedding; `G` β€” ground/anchor embedding. - `β€–Bβ€– β‰₯ B_c` β€” collapse threshold on residual magnitude (BBCR). - *Convergent Ξ»* β€” layer is stable across paraphrases; *divergent Ξ»* β€” layer is drifting. --- ### πŸ”— Quick-Start Downloads (60 sec) | Tool | Link | 3-Step Setup | |------|------|--------------| | **WFGY 1.0 PDF** | [Engine Paper](https://github.com/onestardao/WFGY/blob/main/I_am_not_lizardman/WFGY_All_Principles_Return_to_One_v1.0_PSBigBig_Public.pdf) | 1️⃣ Download Β· 2️⃣ Upload to your LLM Β· 3️⃣ Ask β€œAnswer using WFGY + \” | | **TXT OS (plain-text OS)** | [TXTOS.txt](https://github.com/onestardao/WFGY/blob/main/OS/TXTOS.txt) | 1️⃣ Download Β· 2️⃣ Paste into any LLM chat Β· 3️⃣ Type β€œhello world” β€” OS boots instantly | --- ### 🧭 Explore More | Module | Description | Link | |-----------------------|----------------------------------------------------------|----------| | WFGY Core | WFGY 2.0 engine is live: full symbolic reasoning architecture and math stack | [View β†’](https://github.com/onestardao/WFGY/tree/main/core/README.md) | | Problem Map 1.0 | Initial 16-mode diagnostic and symbolic fix framework | [View β†’](https://github.com/onestardao/WFGY/tree/main/ProblemMap/README.md) | | Problem Map 2.0 | RAG-focused failure tree, modular fixes, and pipelines | [View β†’](https://github.com/onestardao/WFGY/blob/main/ProblemMap/rag-architecture-and-recovery.md) | | Semantic Clinic Index | Expanded failure catalog: prompt injection, memory bugs, logic drift | [View β†’](https://github.com/onestardao/WFGY/blob/main/ProblemMap/SemanticClinicIndex.md) | | Semantic Blueprint | Layer-based symbolic reasoning & semantic modulations | [View β†’](https://github.com/onestardao/WFGY/tree/main/SemanticBlueprint/README.md) | | Benchmark vs GPT-5 | Stress test GPT-5 with full WFGY reasoning suite | [View β†’](https://github.com/onestardao/WFGY/tree/main/benchmarks/benchmark-vs-gpt5/README.md) | | πŸ§™β€β™‚οΈ Starter Village 🏑 | New here? Lost in symbols? Click here and let the wizard guide you through | [Start β†’](https://github.com/onestardao/WFGY/blob/main/StarterVillage/README.md) | --- > πŸ‘‘ **Early Stargazers: [See the Hall of Fame](https://github.com/onestardao/WFGY/tree/main/stargazers)** β€” > Engineers, hackers, and open source builders who supported WFGY from day one. > GitHub stars ⭐ [WFGY Engine 2.0](https://github.com/onestardao/WFGY/blob/main/core/README.md) is already unlocked. ⭐ Star the repo to help others discover it and unlock more on the [Unlock Board](https://github.com/onestardao/WFGY/blob/main/STAR_UNLOCKS.md).
[![WFGY Main](https://img.shields.io/badge/WFGY-Main-red?style=flat-square)](https://github.com/onestardao/WFGY)   [![TXT OS](https://img.shields.io/badge/TXT%20OS-Reasoning%20OS-orange?style=flat-square)](https://github.com/onestardao/WFGY/tree/main/OS)   [![Blah](https://img.shields.io/badge/Blah-Semantic%20Embed-yellow?style=flat-square)](https://github.com/onestardao/WFGY/tree/main/OS/BlahBlahBlah)   [![Blot](https://img.shields.io/badge/Blot-Persona%20Core-green?style=flat-square)](https://github.com/onestardao/WFGY/tree/main/OS/BlotBlotBlot)   [![Bloc](https://img.shields.io/badge/Bloc-Reasoning%20Compiler-blue?style=flat-square)](https://github.com/onestardao/WFGY/tree/main/OS/BlocBlocBloc)   [![Blur](https://img.shields.io/badge/Blur-Text2Image%20Engine-navy?style=flat-square)](https://github.com/onestardao/WFGY/tree/main/OS/BlurBlurBlur)   [![Blow](https://img.shields.io/badge/Blow-Game%20Logic-purple?style=flat-square)](https://github.com/onestardao/WFGY/tree/main/OS/BlowBlowBlow)