CoolFace
Apppublic

MMo4/csit-ned-chatbot

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
__init__.py14 linesDownload Raw Back to vector
1"""
2Vector store components for CSIT RAG system.
3Provides FAISS-based vector search with graph-enhanced retrieval.
4"""
5
6from .faiss_manager import FAISSManager
7from .enhanced_retrieval import GraphEnhancedRetriever
8from .vector_utils import VectorUtils
9
10__all__ = [
11    'FAISSManager',
12    'GraphEnhancedRetriever',
13    'VectorUtils'
14]