"""
Conversation Events Package
NPC conversation system

Modules:
- npc_interactions: Full conversationEvents.py module
"""

from .npc_interactions import *

__all__ = [
    'conversationMessage',
    'conversationObj',
    'parseConversations',
    'conversationInit',
    'activity',
    'checkIn',
    'askAboutDay',
    'flatter',
    'studySession',
    'chat',
    'sendCharacterMessage',
    'ConversationContextManager',
    'getFallbackResponse',
    'getOpenAIResponse',
]
