""" FILE: app/core/qdrant.py DESCRIPTION: Proxy-Modul zur Aufrechterhaltung der Abwärtskompatibilität (WP-14). Leitet alle Aufrufe an das neue database-Paket weiter. STATUS: Proxy (Legacy-Support) """ from .database.qdrant import ( QdrantConfig, get_client, ensure_collections, ensure_payload_indexes, collection_names ) # Re-Export für 100% Kompatibilität __all__ = [ "QdrantConfig", "get_client", "ensure_collections", "ensure_payload_indexes", "collection_names", ]