24 lines
610 B
Python
24 lines
610 B
Python
"""
|
|
FILE: app/core/qdrant_points.py
|
|
DESCRIPTION: Proxy-Modul zur Aufrechterhaltung der Abwärtskompatibilität (WP-14).
|
|
Leitet Point-Operationen an das neue database-Paket weiter.
|
|
STATUS: Proxy (Legacy-Support)
|
|
"""
|
|
from .database.qdrant_points import (
|
|
points_for_note,
|
|
points_for_chunks,
|
|
points_for_edges,
|
|
upsert_batch,
|
|
get_edges_for_sources,
|
|
search_chunks_by_vector
|
|
)
|
|
|
|
# Re-Export für 100% Kompatibilität
|
|
__all__ = [
|
|
"points_for_note",
|
|
"points_for_chunks",
|
|
"points_for_edges",
|
|
"upsert_batch",
|
|
"get_edges_for_sources",
|
|
"search_chunks_by_vector"
|
|
] |