GYOM15
Deploy the RAG comparison app
45d0949
Raw
History Blame Contribute Delete
288 Bytes
"""Graph-aware RAG pipeline: GraphRetriever + shared skeleton.
Adds nothing to the generic pipeline; only the retrieval (graph) changes.
"""
from shared.rag import BaseRAG
class GraphRAG(BaseRAG):
"""Graph-aware RAG on the common RAG skeleton. See :class:`shared.rag.BaseRAG`."""