25 lines
528 B
Python
25 lines
528 B
Python
"""
|
|
PACKAGE: app.core.retrieval
|
|
DESCRIPTION: Zentrale Schnittstelle für Retrieval-Operationen (Vektor- & Graph-Suche).
|
|
Bündelt Suche und mathematische Scoring-Engine.
|
|
"""
|
|
from .retriever import (
|
|
Retriever,
|
|
hybrid_retrieve,
|
|
semantic_retrieve
|
|
)
|
|
|
|
from .retriever_scoring import (
|
|
get_weights,
|
|
compute_wp22_score,
|
|
get_status_multiplier
|
|
)
|
|
|
|
__all__ = [
|
|
"Retriever",
|
|
"hybrid_retrieve",
|
|
"semantic_retrieve",
|
|
"get_weights",
|
|
"compute_wp22_score",
|
|
"get_status_multiplier"
|
|
] |