Files
odysseus/services/docs/__init__.py
pewdiepie-archdaemon e5c99a5eee Odysseus v1.0
2026-05-31 23:58:26 +09:00

19 lines
445 B
Python

# services/docs/__init__.py
"""Docs service — personal document RAG with ChromaDB.
Thin facade: DocsService lives here, RAGManager/VectorRAG are re-exported
from the canonical implementations in src/.
"""
from .service import DocsService, DocChunk, IndexResult
from src.rag_manager import RAGManager
from src.rag_vector import VectorRAG
__all__ = [
"DocsService",
"DocChunk",
"IndexResult",
"RAGManager",
"VectorRAG",
]