Spaces:
Build error
Build error
| """ | |
| Advanced RAG Patterns - RAG-The-Game-Changer | |
| Implementation of advanced RAG techniques and patterns. | |
| """ | |
| from .retrieval_augmented_generation import RetrievalAugmentedGeneration | |
| from .conversational_rag import ConversationalRAG | |
| from .multi_hop_rag import MultiHopRAG | |
| from .self_reflection_rag import SelfReflectionRAG | |
| from .graph_rag import GraphRAG | |
| from .agentic_rag import AgenticRAG | |
| __all__ = [ | |
| "RetrievalAugmentedGeneration", | |
| "ConversationalRAG", | |
| "MultiHopRAG", | |
| "SelfReflectionRAG", | |
| "GraphRAG", | |
| "AgenticRAG", | |
| ] | |