- Added DATABASE_SETUP.md with comprehensive guide for PostgreSQL and Redis installation on Windows - Created .claude/settings.local.json with permission settings for pytest and database fix scripts - Updated .gitignore to exclude .env.backup file - Included database connection test utilities in lyra/database_setup.py - Added environment variable configuration examples for local development
16 lines
402 B
Python
16 lines
402 B
Python
"""
|
|
Lyra Emotional Response Module
|
|
|
|
Implements sophisticated emotional intelligence that allows Lyra to experience,
|
|
express, and remember emotions like a real person.
|
|
"""
|
|
|
|
from .system import EmotionalSystem, EmotionalState, EmotionMemory
|
|
from .expressions import EmotionalExpressionEngine
|
|
|
|
__all__ = [
|
|
"EmotionalSystem",
|
|
"EmotionalState",
|
|
"EmotionMemory",
|
|
"EmotionalExpressionEngine"
|
|
] |