RAG_Knowledge_Assistant / db /bootstrap.py
atara57769's picture
refactor: migrate chat and ingestion logic into dedicated services and consolidate database initialization
177071b
Raw
History Blame Contribute Delete
190 Bytes
import logging
from db.qdrant_client import init_db
logger = logging.getLogger(__name__)
def init_database():
logger.info("Bootstrapping database schema/collections...")
init_db()