refactor: migrate chat and ingestion logic into dedicated services and consolidate database initialization
177071b | import logging | |
| from db.qdrant_client import init_db | |
| logger = logging.getLogger(__name__) | |
| def init_database(): | |
| logger.info("Bootstrapping database schema/collections...") | |
| init_db() | |