"""
MindScreen AI — core screening logic package.

DISCLAIMER: This software is a research/educational screening aid. It does
NOT diagnose mental illness and does NOT replace a licensed mental health
professional. If you or someone you know is in crisis, contact local
emergency services or a crisis line (e.g. 988 in the US) immediately.
"""

from .conversation_manager import ConversationManager
from .risk_engine import RiskEngine, ScreeningResult
from .safety import CrisisDetector
from .nlp_analysis import TextAnalyzer

__all__ = [
    "ConversationManager",
    "RiskEngine",
    "ScreeningResult",
    "CrisisDetector",
    "TextAnalyzer",
]
