reframe / cbt_knowledge /__init__.py
macayaven's picture
feat: initial implementation of the re-frame Cognitive Reframing Assistant, including core functionality, UI components, and localization support. Added .gitignore, configuration files, and initial tests.
27fd523
Raw
History Blame
402 Bytes
"""
CBT Knowledge Base Module
Contains cognitive distortions, reframing strategies, and therapeutic principles.
"""
from .distortions import COGNITIVE_DISTORTIONS, detect_distortions, get_distortion_by_code
from .reframing_tools import (
find_similar_situations,
)
__all__ = [
'COGNITIVE_DISTORTIONS',
'get_distortion_by_code',
'detect_distortions',
'find_similar_situations',
]