patristic-be / src /lib /system /__init__.py
Mario33333's picture
deploy: reader-access security hardening (feature/audiobook@06a5ed8)
7c2d250 verified
Raw
History Blame Contribute Delete
1.17 kB
"""System health & startup helpers."""
from .health import (
QDRANT_CONTAINER_NAME,
QDRANT_IMAGE,
all_checks,
backend_label,
check_books_csv,
check_docker_available,
check_env_keys,
check_inventory_db,
check_qdrant,
cloud_name_for,
current_backend,
init_inventory_db,
is_cloud,
is_cloud_runtime,
runtime,
set_backend,
start_qdrant_container,
)
from .migration import (
InventoryReport,
SideSummary,
VectorReport,
inventory_summary,
migrate_inventory,
migrate_vectors,
vector_summary,
)
from .models import CheckResult
__all__ = [
"CheckResult",
"InventoryReport", "SideSummary", "VectorReport",
"QDRANT_CONTAINER_NAME", "QDRANT_IMAGE",
"all_checks", "backend_label", "cloud_name_for", "current_backend",
"is_cloud", "is_cloud_runtime", "runtime", "set_backend",
"check_books_csv", "check_docker_available", "check_env_keys",
"check_inventory_db", "check_qdrant",
"init_inventory_db", "start_qdrant_container",
"inventory_summary", "migrate_inventory", "migrate_vectors", "vector_summary",
]