---
title: "RAG-Muster"
source: "https://systems-analysis.info/int/RAG-Muster"
wiki: "systems-analysis.info/int"
article: "RAG-Muster"
language: "de"
categories:
  - "Category:German"
  - "Category:Large language models"
  - "Category:Prompt engineering"
revision_id: 6101
wiki_created_at: 2026-09-06T23:58:20Z
wiki_modified_at: 2026-09-06T23:58:20Z
downloaded_at: 2026-09-07T23:12:00Z
---

# RAG-Muster

**RAG-Muster** (engl. *RAG Patterns*) sind eine Sammlung von architektonischen und methodischen Ansätzen zum Aufbau von **Retrieval-Augmented Generation** (RAG)-Systemen. Diese Muster dienen der Lösung grundlegender Probleme von Großen Sprachmodellen (LLMs), wie Halluzinationen, veraltetem Wissen und mangelnder Domänenspezifität, durch die Integration von LLMs mit externen, dynamisch zugänglichen Datenquellen<sup>[\[1\]](https://systems-analysis.info/int/RAG-Muster#cite_note-lewis2020-1)</sup>. Die Entwicklung von RAG reicht von einfachen linearen Pipelines bis hin zu komplexen modularen und agentenbasierten Systemen<sup>[\[2\]](https://systems-analysis.info/int/RAG-Muster#cite_note-survey2024-2)</sup>.

## Grundlegende RAG-Muster

Mit der Weiterentwicklung der Technologie sind zahlreiche RAG-Muster entstanden, von denen jedes spezifische Aufgaben löst und eigene Kompromisse zwischen Qualität, Geschwindigkeit und Kosten aufweist.

- **Classic RAG (Klassisches RAG)** — der grundlegende Ansatz, bei dem die Anfrage eines Benutzers vektorisiert wird, um relevante Fragmente (Chunks) in einer Vektordatenbank zu finden; die gefundenen Chunks werden zusammen mit der Frage an das LLM übergeben, um eine Antwort zu generieren<sup>[\[1\]](https://systems-analysis.info/int/RAG-Muster#cite_note-lewis2020-1)</sup>.

<!-- -->

- **Multi-Query RAG (Mehrfachanfragen)** — das LLM generiert mehrere umformulierte oder präzisierte Varianten der ursprünglichen Anfrage; die Suche wird für alle Varianten ausgeführt und die Ergebnisse werden zusammengeführt, was die Trefferquote (*recall*) erhöht<sup>[\[3\]](https://systems-analysis.info/int/RAG-Muster#cite_note-langchain-multiquery-3)</sup>.

<!-- -->

- **HyDE (Hypothetical Document Expansion)** — um die „semantische Lücke“ zwischen einer kurzen Anfrage und langen Dokumenten zu überbrücken. Das LLM generiert zunächst ein „hypothetisches“ Antwortdokument, dessen Embedding dann für die Suche verwendet wird, was oft die Qualität des Retrievals verbessert<sup>[\[4\]](https://systems-analysis.info/int/RAG-Muster#cite_note-hyde-4)</sup>.

<!-- -->

- **Hybrid Retrieval (Hybride Suche)** — eine Kombination aus semantischer (vektorbasierter) und lexikalischer (BM25) Suche. Hybride Schemata sind zum Standard für Produktionssysteme geworden: Die Vektorsuche deckt semantische Übereinstimmungen ab, während BM25 exakte Begriffe, IDs oder Akronyme findet; die Ergebnisse werden durch Fusion zusammengeführt<sup>[\[5\]](https://systems-analysis.info/int/RAG-Muster#cite_note-weaviate-hybrid-5)[\[6\]](https://systems-analysis.info/int/RAG-Muster#cite_note-qdrant-hybrid-6)[\[7\]](https://systems-analysis.info/int/RAG-Muster#cite_note-milvus-fulltext-7)</sup>.

<!-- -->

- **Re-ranking (Zusätzliches Ranking)** — ein zweistufiger Prozess: Ein schneller Retriever liefert eine Reihe von Kandidaten (z. B. die Top 100), danach berechnet ein Cross-Encoder (oder ein anderer Reranker) die Relevanz neu und wählt die besten (z. B. die Top 5) für das LLM aus<sup>[\[8\]](https://systems-analysis.info/int/RAG-Muster#cite_note-nogueira2019-8)[\[9\]](https://systems-analysis.info/int/RAG-Muster#cite_note-cohere-rerank-9)</sup>.

<!-- -->

- **Query Routing (Anfragen-Routing)** — in Systemen mit mehreren heterogenen Datenquellen (verschiedene Indizes, Datenbanken, APIs) wird die Anfrage mithilfe eines Routers (LLM-Selektor oder Klassifikator) an die am besten geeignete Quelle weitergeleitet; dies schließt Fallback-Strategien ein<sup>[\[10\]](https://systems-analysis.info/int/RAG-Muster#cite_note-llama-router-10)</sup>.

<!-- -->

- **Agentic/Web RAG (Agentenbasiertes RAG)** — das LLM agiert als Agent: Es zerlegt komplexe Fragen, plant Iterationen und nutzt Werkzeuge (Vektorsuche, Websuche) mit Feedbackschleifen. Eine typische Implementierung ist das ReAct-Paradigma<sup>[\[11\]](https://systems-analysis.info/int/RAG-Muster#cite_note-react-11)</sup>; für weborientierte Datensammlung und obligatorische Quellenangaben siehe WebGPT<sup>[\[12\]](https://systems-analysis.info/int/RAG-Muster#cite_note-webgpt-12)</sup>.

### Verwandte und sich entwickelnde Paradigmen

- **GraphRAG (Graphbasiertes RAG)** — nutzt einen Wissensgraphen als Quelle und Mechanismus zur Kontextermittlung; die Suche erfolgt entlang der Verbindungsstruktur zwischen Entitäten sowie im Text, was die Interpretierbarkeit und Qualität bei Multi-Hop-Fragen verbessert<sup>[\[13\]](https://systems-analysis.info/int/RAG-Muster#cite_note-graphrag-13)[\[14\]](https://systems-analysis.info/int/RAG-Muster#cite_note-graphrag-project-14)</sup>.
- **MM-RAG (Multimodales RAG)** — arbeitet mit textuellen und visuellen Quellen (Scans, Diagramme, Tabellen). Beispiel: VisRAG demonstriert VLM-orientiertes Retrieval und Generierung auf Basis multimodaler Dokumente<sup>[\[15\]](https://systems-analysis.info/int/RAG-Muster#cite_note-visrag-15)</sup>.
- **Kontext-Packaging** — Methoden zur Integration der gefundenen Chunks in den Prompt: *Stuff*, *Map-Reduce*, *Refine*, *Tree-of-Chunks (RAPTOR)*<sup>[\[16\]](https://systems-analysis.info/int/RAG-Muster#cite_note-raptor-16)</sup>.

## Vergleichstabelle der Muster

| Muster               | Anwendungsfall                                                | Einfluss auf die Qualität                                                                                                                                                                                                                                                                               | Kosten / Latenz | Risiken und Einschränkungen                                               |
|----------------------|---------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|---------------------------------------------------------------------------|
| **Classic RAG**      | PoC und einfache Q&A-Systeme über einer homogenen Datenbasis  | Grundniveau; stark abhängig von den Embeddings<sup>[\[1\]](https://systems-analysis.info/int/RAG-Muster#cite_note-lewis2020-1)</sup>                                                                                                                                                                    | Niedrig         | Empfindlichkeit gegenüber Formulierungen; Risiko von irrelevantem Kontext |
| **Hybrid Retrieval** | In den meisten Produktionsszenarien; viele Codes/Akronyme/IDs | Erhöht den Recall; deckt exakte Begriffe ab<sup>[\[5\]](https://systems-analysis.info/int/RAG-Muster#cite_note-weaviate-hybrid-5)[\[6\]](https://systems-analysis.info/int/RAG-Muster#cite_note-qdrant-hybrid-6)[\[7\]](https://systems-analysis.info/int/RAG-Muster#cite_note-milvus-fulltext-7)</sup> | Niedrig/Mittel  | Anpassung der Fusion-Gewichte; zwei Indizes erforderlich                  |
| **Re-ranking**       | Kritisch, wenn hohe Präzision erforderlich ist                | Signifikanter Anstieg der Precision bei Top-k<sup>[\[8\]](https://systems-analysis.info/int/RAG-Muster#cite_note-nogueira2019-8)[\[9\]](https://systems-analysis.info/int/RAG-Muster#cite_note-cohere-rerank-9)</sup>                                                                                   | Mittel/Hoch     | Zusätzliche Latenz/Kosten                                                 |
| **Multi-Query**      | Kurze oder vielschichtige Anfragen                            | Erhöht den Recall<sup>[\[3\]](https://systems-analysis.info/int/RAG-Muster#cite_note-langchain-multiquery-3)</sup>                                                                                                                                                                                      | Mittel          | Überflüssige/verrauschte Umformulierungen                                 |
| **HyDE**             | Kurze/mehrdeutige Anfragen mit großer „semantischer Lücke“    | Verbessert die Retrieval-Qualität im *Zero-Shot*-Szenario<sup>[\[4\]](https://systems-analysis.info/int/RAG-Muster#cite_note-hyde-4)</sup>                                                                                                                                                              | Mittel          | Abhängig von der Qualität des „hypothetischen“ Textes                     |
| **Query Routing**    | Mehrere Quellen (Dokumentenbasis, SQL, API, Web)              | Erhöht die Relevanz durch Auswahl der korrekten Quelle<sup>[\[10\]](https://systems-analysis.info/int/RAG-Muster#cite_note-llama-router-10)</sup>                                                                                                                                                       | Mittel          | Fehlerhaftes Routing führt zum Scheitern der Suche                        |
| **Agentic/Web RAG**  | Komplexe, explorative, mehrstufige Anfragen                   | Löst Aufgaben, die über eine lineare Pipeline hinausgehen<sup>[\[11\]](https://systems-analysis.info/int/RAG-Muster#cite_note-react-11)[\[12\]](https://systems-analysis.info/int/RAG-Muster#cite_note-webgpt-12)</sup>                                                                                 | Hoch            | Komplexität, Risiko von Endlosschleifen; benötigt Guardrails              |

Vergleich der wichtigsten RAG-Muster

## Praktische Umsetzung und Architektur

### Implementierungsphasen

1.  **Proof of Concept (PoC):** Beginnen Sie mit **Classic RAG** auf einem begrenzten, aber repräsentativen Datensatz, um die Qualität der Embeddings und das grundlegende Retrieval zu überprüfen<sup>[\[1\]](https://systems-analysis.info/int/RAG-Muster#cite_note-lewis2020-1)</sup>.
2.  **Minimum Viable Product (MVP):** Implementieren Sie **Hybrid Retrieval** und **Re-ranking** als bestes Verhältnis von Aufwand zu Nutzen<sup>[\[5\]](https://systems-analysis.info/int/RAG-Muster#cite_note-weaviate-hybrid-5)[\[8\]](https://systems-analysis.info/int/RAG-Muster#cite_note-nogueira2019-8)</sup>.
3.  **Production:** Fügen Sie Anfragetransformationen (**HyDE**, **Multi-Query**) und bei Bedarf **Query Routing** hinzu; richten Sie Observability (Protokollierung von Retrieval, Reranking, Antworten) und A/B-Tests ein<sup>[\[3\]](https://systems-analysis.info/int/RAG-Muster#cite_note-langchain-multiquery-3)[\[10\]](https://systems-analysis.info/int/RAG-Muster#cite_note-llama-router-10)</sup>.

### Schlüsselkomponenten

- **Chunking:** Einer der kritischsten Faktoren für die Qualität. Eine naive feste Größe zerreißt oft semantische Einheiten. Empfohlen werden strukturbasierte (anhand des Markups) oder rekursive Splitter (Absatz → Satz → Wort)<sup>[\[17\]](https://systems-analysis.info/int/RAG-Muster#cite_note-rcsplit-17)[\[18\]](https://systems-analysis.info/int/RAG-Muster#cite_note-llama-hier-18)</sup>.
- **Embeddings und Metadaten:** Speichern Sie mit jedem Chunk die document_id, Seite/Abschnitt, Überschrift und Daten; dies ist für die Filterung und korrekte Quellenangabe unerlässlich.
- **Hybrides Retrieval und Reranking:** Verwenden Sie BM25 in Kombination mit Vektorsuche und Fusion (oder RRF), gefolgt von einem Cross-Encoder für das Reranking einer kleinen Menge von Kandidaten<sup>[\[5\]](https://systems-analysis.info/int/RAG-Muster#cite_note-weaviate-hybrid-5)[\[6\]](https://systems-analysis.info/int/RAG-Muster#cite_note-qdrant-hybrid-6)[\[8\]](https://systems-analysis.info/int/RAG-Muster#cite_note-nogueira2019-8)</sup>.
- **Kontext-Packaging:** Wählen Sie für umfangreiche Korpora Ansätze wie *Map-Reduce*, *Refine* oder *Tree-of-Chunks*<sup>[\[16\]](https://systems-analysis.info/int/RAG-Muster#cite_note-raptor-16)[\[18\]](https://systems-analysis.info/int/RAG-Muster#cite_note-llama-hier-18)</sup>.

### Häufige Fehler (Anti-Muster)

- **Ausschließlich Vektorsuche** ohne BM25 → führt zu Fehlern bei Codes, IDs und Akronymen<sup>[\[5\]](https://systems-analysis.info/int/RAG-Muster#cite_note-weaviate-hybrid-5)[\[7\]](https://systems-analysis.info/int/RAG-Muster#cite_note-milvus-fulltext-7)</sup>.
- **Zu große oder zu kleine Chunks** → führen zum Verlust von Kontext oder zur „Verwässerung“ des Embeddings<sup>[\[17\]](https://systems-analysis.info/int/RAG-Muster#cite_note-rcsplit-17)</sup>.
- **Fehlendes Reranking in der Produktion** → das LLM erhält verrauschten Kontext<sup>[\[8\]](https://systems-analysis.info/int/RAG-Muster#cite_note-nogueira2019-8)</sup>.
- **Fehlende Observability** und Quellennachverfolgung → macht die Analyse von Fehlerursachen unmöglich (siehe RAG-Evaluierung).

## Qualitätsbewertung und Metriken

Die Bewertung erfolgt auf der Ebene des Retrievals (offline) und End-to-End (Generierung).

### Metriken für den Retriever

- **Hit Rate, Recall@k, MRR** — Abdeckung und Position relevanter Dokumente.
- **Context Precision & Recall** — gibt an, wie frei der abgerufene Kontext von irrelevanten Informationen ist und ob er alle notwendigen Informationen abdeckt (implementiert in RAGAS)<sup>[\[19\]](https://systems-analysis.info/int/RAG-Muster#cite_note-ragas-19)</sup>.

### Metriken für den Generator (End-to-End)

- **Faithfulness / Groundedness** — Übereinstimmung der Antwort mit dem bereitgestellten Kontext.
- **Answer Relevancy (Antwortrelevanz)** — Übereinstimmung mit der ursprünglichen Frage.

Zur Automatisierung dieser Metriken werden Open-Source-Frameworks wie **RAGAS**, **TruLens** (die *RAG-Triade*: context relevance, groundedness, answer relevance) und **DeepEval** verwendet<sup>[\[20\]](https://systems-analysis.info/int/RAG-Muster#cite_note-trulens-20)[\[21\]](https://systems-analysis.info/int/RAG-Muster#cite_note-deepeval-21)</sup>.

## Siehe auch

- Retrieval-Augmented Generation (RAG)
- Vektordatenbanken
- Embedding
- KI-Agent
- GraphRAG
- MM-RAG
- Bewertung und Benchmarks von LLMs

## Literatur

- Lewis, P., Perez, E., et al. (2020). *Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks*. NeurIPS. <a href="https://arxiv.org/abs/2005.11401" class="external text" rel="nofollow">arXiv:2005.11401</a>.
- Fan, W., Ding, Y., et al. (2024). *A Survey on RAG Meeting LLMs: Towards Retrieval-Augmented Large Language Models*. KDD. DOI:10.1145/3637528.3671470; <a href="https://arxiv.org/abs/2405.06211" class="external text" rel="nofollow">arXiv:2405.06211</a>.
- Gao, L., Ma, X., Lin, J., Callan, J. (2023). *Precise Zero‑Shot Dense Retrieval without Relevance Labels (HyDE)*. ACL 2023. <a href="https://aclanthology.org/2023.acl-long.99/" class="external text" rel="nofollow">ACL Anthology</a>; <a href="https://arxiv.org/abs/2212.10496" class="external text" rel="nofollow">arXiv:2212.10496</a>.
- Nogueira, R., Cho, K. (2019). *Passage Re‑ranking with BERT*. <a href="https://arxiv.org/abs/1901.04085" class="external text" rel="nofollow">arXiv:1901.04085</a>.
- Weaviate Docs. *Hybrid search (BM25+Vector)*. <a href="https://docs.weaviate.io/weaviate/concepts/search/hybrid-search" class="external autonumber" rel="nofollow">[1]</a>.
- Qdrant Docs. *Hybrid Queries*. <a href="https://qdrant.tech/documentation/concepts/hybrid-queries/" class="external autonumber" rel="nofollow">[2]</a>.
- Milvus Docs. *Full‑Text Search* / *Hybrid Search*. <a href="https://milvus.io/docs/full-text-search.md" class="external autonumber" rel="nofollow">[3]</a> / <a href="https://milvus.io/docs/hybrid_search_with_milvus.md" class="external autonumber" rel="nofollow">[4]</a>.
- LangChain Docs. *MultiQueryRetriever*. <a href="https://python.langchain.com/docs/how_to/MultiQueryRetriever/" class="external autonumber" rel="nofollow">[5]</a>.
- Cohere Docs. *Rerank — best practices*. <a href="https://docs.cohere.com/docs/reranking-best-practices" class="external autonumber" rel="nofollow">[6]</a>.
- LlamaIndex Docs. *Routing (query routers/selectors)*. <a href="https://docs.llamaindex.ai/en/stable/module_guides/querying/router/" class="external autonumber" rel="nofollow">[7]</a>.
- Yao, S., et al. (2023). *ReAct: Synergizing Reasoning and Acting in Language Models*. ICLR. <a href="https://arxiv.org/abs/2210.03629" class="external text" rel="nofollow">arXiv:2210.03629</a>.
- Nakano, R., et al. (2021). *WebGPT: Browser‑assisted question‑answering with human feedback*. <a href="https://arxiv.org/abs/2112.09332" class="external text" rel="nofollow">arXiv:2112.09332</a>.
- Microsoft Research Blog. *GraphRAG: Unlocking LLM discovery on narrative private data*. (2024). <a href="https://www.microsoft.com/en-us/research/blog/graphrag-unlocking-llm-discovery-on-narrative-private-data/" class="external autonumber" rel="nofollow">[8]</a>.
- Microsoft Research. *Project GraphRAG*. (2024). <a href="https://www.microsoft.com/en-us/research/project/graphrag/" class="external autonumber" rel="nofollow">[9]</a>.
- Yu, S., et al. (2024). *VisRAG: Vision‑based Retrieval‑augmented Generation on Multi‑modality Documents*. <a href="https://arxiv.org/abs/2410.10594" class="external text" rel="nofollow">arXiv:2410.10594</a>.
- Sarthi, P., et al. (2024). *RAPTOR: Recursive Abstractive Processing for Tree‑Organized Retrieval*. <a href="https://arxiv.org/abs/2401.18059" class="external text" rel="nofollow">arXiv:2401.18059</a>.
- Es, S., et al. (2024). *RAGAs: Automated Evaluation of Retrieval Augmented Generation*. EACL (Demo). <a href="https://aclanthology.org/2024.eacl-demo.16/" class="external autonumber" rel="nofollow">[10]</a>.
- TruLens Docs. *RAG Triad*. <a href="https://www.trulens.org/getting_started/core_concepts/rag_triad/" class="external autonumber" rel="nofollow">[11]</a>.
- DeepEval (GitHub). *The LLM Evaluation Framework*. <a href="https://github.com/confident-ai/deepeval" class="external autonumber" rel="nofollow">[12]</a>.
- LangChain Docs. *RecursiveCharacterTextSplitter*. <a href="https://python.langchain.com/docs/how_to/recursive_text_splitter/" class="external autonumber" rel="nofollow">[13]</a>.
- LlamaIndex Docs. *HierarchicalNodeParser*; *Response Synthesis (Tree/Refine)*. <a href="https://docs.llamaindex.ai/en/stable/api/llama_index.core.node_parser.HierarchicalNodeParser.html" class="external autonumber" rel="nofollow">[14]</a>; <a href="https://docs.llamaindex.ai/en/stable/examples/low_level/response_synthesis/" class="external autonumber" rel="nofollow">[15]</a>.

## Einzelnachweise

1.  <span id="cite_note-lewis2020-1">↑ <sup>[1.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-lewis2020_1-0)</sup> <sup>[1.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-lewis2020_1-1)</sup> <sup>[1.2](https://systems-analysis.info/int/RAG-Muster#cite_ref-lewis2020_1-2)</sup> <sup>[1.3](https://systems-analysis.info/int/RAG-Muster#cite_ref-lewis2020_1-3)</sup> Lewis, P., Perez, E., et al. (2020). *Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks*. NeurIPS. arXiv:2005.11401.</span>
2.  <span id="cite_note-survey2024-2">[↑](https://systems-analysis.info/int/RAG-Muster#cite_ref-survey2024_2-0) Fan, W., Ding, Y., et al. (2024). *A Survey on RAG Meeting LLMs: Towards Retrieval-Augmented Large Language Models*. KDD. DOI:10.1145/3637528.3671470; arXiv:2405.06211.</span>
3.  <span id="cite_note-langchain-multiquery-3">↑ <sup>[3.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-langchain-multiquery_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-langchain-multiquery_3-1)</sup> <sup>[3.2](https://systems-analysis.info/int/RAG-Muster#cite_ref-langchain-multiquery_3-2)</sup> LangChain Docs. *MultiQueryRetriever*. <a href="https://python.langchain.com/docs/how_to/MultiQueryRetriever/" class="external free" rel="nofollow">https://python.langchain.com/docs/how_to/MultiQueryRetriever/</a></span>
4.  <span id="cite_note-hyde-4">↑ <sup>[4.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-hyde_4-0)</sup> <sup>[4.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-hyde_4-1)</sup> Gao, L., Ma, X., Lin, J., Callan, J. (2023). *Precise Zero‑Shot Dense Retrieval without Relevance Labels*. ACL 2023. arXiv:2212.10496; ACL Anthology: 2023.acl‑long.99.</span>
5.  <span id="cite_note-weaviate-hybrid-5">↑ <sup>[5.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-weaviate-hybrid_5-0)</sup> <sup>[5.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-weaviate-hybrid_5-1)</sup> <sup>[5.2](https://systems-analysis.info/int/RAG-Muster#cite_ref-weaviate-hybrid_5-2)</sup> <sup>[5.3](https://systems-analysis.info/int/RAG-Muster#cite_ref-weaviate-hybrid_5-3)</sup> <sup>[5.4](https://systems-analysis.info/int/RAG-Muster#cite_ref-weaviate-hybrid_5-4)</sup> Weaviate Docs. *Hybrid search (BM25+Vector)*. <a href="https://docs.weaviate.io/weaviate/concepts/search/hybrid-search" class="external free" rel="nofollow">https://docs.weaviate.io/weaviate/concepts/search/hybrid-search</a></span>
6.  <span id="cite_note-qdrant-hybrid-6">↑ <sup>[6.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-qdrant-hybrid_6-0)</sup> <sup>[6.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-qdrant-hybrid_6-1)</sup> <sup>[6.2](https://systems-analysis.info/int/RAG-Muster#cite_ref-qdrant-hybrid_6-2)</sup> Qdrant Docs. *Hybrid Queries*. <a href="https://qdrant.tech/documentation/concepts/hybrid-queries/" class="external free" rel="nofollow">https://qdrant.tech/documentation/concepts/hybrid-queries/</a></span>
7.  <span id="cite_note-milvus-fulltext-7">↑ <sup>[7.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-milvus-fulltext_7-0)</sup> <sup>[7.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-milvus-fulltext_7-1)</sup> <sup>[7.2](https://systems-analysis.info/int/RAG-Muster#cite_ref-milvus-fulltext_7-2)</sup> Milvus Docs. *Full‑Text Search* und *Hybrid Search*. <a href="https://milvus.io/docs/full-text-search.md" class="external free" rel="nofollow">https://milvus.io/docs/full-text-search.md</a>; <a href="https://milvus.io/docs/hybrid_search_with_milvus.md" class="external free" rel="nofollow">https://milvus.io/docs/hybrid_search_with_milvus.md</a></span>
8.  <span id="cite_note-nogueira2019-8">↑ <sup>[8.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-nogueira2019_8-0)</sup> <sup>[8.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-nogueira2019_8-1)</sup> <sup>[8.2](https://systems-analysis.info/int/RAG-Muster#cite_ref-nogueira2019_8-2)</sup> <sup>[8.3](https://systems-analysis.info/int/RAG-Muster#cite_ref-nogueira2019_8-3)</sup> <sup>[8.4](https://systems-analysis.info/int/RAG-Muster#cite_ref-nogueira2019_8-4)</sup> Nogueira, R., Cho, K. (2019). *Passage Re‑ranking with BERT*. arXiv:1901.04085.</span>
9.  <span id="cite_note-cohere-rerank-9">↑ <sup>[9.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-cohere-rerank_9-0)</sup> <sup>[9.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-cohere-rerank_9-1)</sup> Cohere Docs. *Rerank — best practices*. <a href="https://docs.cohere.com/docs/reranking-best-practices" class="external free" rel="nofollow">https://docs.cohere.com/docs/reranking-best-practices</a></span>
10. <span id="cite_note-llama-router-10">↑ <sup>[10.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-llama-router_10-0)</sup> <sup>[10.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-llama-router_10-1)</sup> <sup>[10.2](https://systems-analysis.info/int/RAG-Muster#cite_ref-llama-router_10-2)</sup> LlamaIndex Docs. *Routing (query routers/selectors)*. <a href="https://docs.llamaindex.ai/en/stable/module_guides/querying/router/" class="external free" rel="nofollow">https://docs.llamaindex.ai/en/stable/module_guides/querying/router/</a></span>
11. <span id="cite_note-react-11">↑ <sup>[11.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-react_11-0)</sup> <sup>[11.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-react_11-1)</sup> Yao, S., et al. (2023). *ReAct: Synergizing Reasoning and Acting in Language Models*. ICLR 2023. arXiv:2210.03629.</span>
12. <span id="cite_note-webgpt-12">↑ <sup>[12.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-webgpt_12-0)</sup> <sup>[12.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-webgpt_12-1)</sup> Nakano, R., et al. (2021). *WebGPT: Browser‑assisted question‑answering with human feedback*. arXiv:2112.09332.</span>
13. <span id="cite_note-graphrag-13">[↑](https://systems-analysis.info/int/RAG-Muster#cite_ref-graphrag_13-0) Microsoft Research Blog. *GraphRAG: Unlocking LLM discovery on narrative private data*. 2024. <a href="https://www.microsoft.com/en-us/research/blog/graphrag-unlocking-llm-discovery-on-narrative-private-data/" class="external free" rel="nofollow">https://www.microsoft.com/en-us/research/blog/graphrag-unlocking-llm-discovery-on-narrative-private-data/</a></span>
14. <span id="cite_note-graphrag-project-14">[↑](https://systems-analysis.info/int/RAG-Muster#cite_ref-graphrag-project_14-0) Microsoft Research. *Project GraphRAG*. <a href="https://www.microsoft.com/en-us/research/project/graphrag/" class="external free" rel="nofollow">https://www.microsoft.com/en-us/research/project/graphrag/</a></span>
15. <span id="cite_note-visrag-15">[↑](https://systems-analysis.info/int/RAG-Muster#cite_ref-visrag_15-0) Yu, S., et al. (2024). *VisRAG: Vision‑based Retrieval‑augmented Generation on Multi‑modality Documents*. arXiv:2410.10594; OpenReview: zG459X3Xge.</span>
16. <span id="cite_note-raptor-16">↑ <sup>[16.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-raptor_16-0)</sup> <sup>[16.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-raptor_16-1)</sup> Sarthi, P., et al. (2024). *RAPTOR: Recursive Abstractive Processing for Tree‑Organized Retrieval*. arXiv:2401.18059.</span>
17. <span id="cite_note-rcsplit-17">↑ <sup>[17.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-rcsplit_17-0)</sup> <sup>[17.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-rcsplit_17-1)</sup> LangChain Docs. *RecursiveCharacterTextSplitter*. <a href="https://python.langchain.com/docs/how_to/recursive_text_splitter/" class="external free" rel="nofollow">https://python.langchain.com/docs/how_to/recursive_text_splitter/</a></span>
18. <span id="cite_note-llama-hier-18">↑ <sup>[18.0](https://systems-analysis.info/int/RAG-Muster#cite_ref-llama-hier_18-0)</sup> <sup>[18.1](https://systems-analysis.info/int/RAG-Muster#cite_ref-llama-hier_18-1)</sup> LlamaIndex Docs. *HierarchicalNodeParser* und *Tree Summarization*. <a href="https://docs.llamaindex.ai/en/stable/api/llama_index.core.node_parser.HierarchicalNodeParser.html" class="external free" rel="nofollow">https://docs.llamaindex.ai/en/stable/api/llama_index.core.node_parser.HierarchicalNodeParser.html</a>; <a href="https://docs.llamaindex.ai/en/stable/examples/low_level/response_synthesis/" class="external free" rel="nofollow">https://docs.llamaindex.ai/en/stable/examples/low_level/response_synthesis/</a></span>
19. <span id="cite_note-ragas-19">[↑](https://systems-analysis.info/int/RAG-Muster#cite_ref-ragas_19-0) Es, S., et al. (2024). *RAGAs: Automated Evaluation of Retrieval Augmented Generation*. EACL (Demo). <a href="https://aclanthology.org/2024.eacl-demo.16/" class="external free" rel="nofollow">https://aclanthology.org/2024.eacl-demo.16/</a></span>
20. <span id="cite_note-trulens-20">[↑](https://systems-analysis.info/int/RAG-Muster#cite_ref-trulens_20-0) TruLens Docs. *RAG Triad*. <a href="https://www.trulens.org/getting_started/core_concepts/rag_triad/" class="external free" rel="nofollow">https://www.trulens.org/getting_started/core_concepts/rag_triad/</a></span>
21. <span id="cite_note-deepeval-21">[↑](https://systems-analysis.info/int/RAG-Muster#cite_ref-deepeval_21-0) DeepEval (GitHub). <a href="https://github.com/confident-ai/deepeval" class="external free" rel="nofollow">https://github.com/confident-ai/deepeval</a></span>
