File size: 1,018 Bytes
3f9f85b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
Learning and Personalization System

This package provides comprehensive learning, personalization, A/B testing,
and analytics capabilities for the conversational travel chat system.
"""

from .user_learning import UserLearningSystem, UserType, InteractionType, UserProfile
from .ab_testing import ABTestingSystem, MetricType, TestStatus, ABTest, TestVariant
from .analytics import AnalyticsFeedbackSystem, FeedbackType, FeedbackRating, SessionMetrics
from .conversational_chat import RealAPIConversationalTravelChat, TripContext, ConversationState

__all__ = [
    # User Learning
    'UserLearningSystem',
    'UserType', 
    'InteractionType',
    'UserProfile',
    
    # A/B Testing
    'ABTestingSystem',
    'MetricType',
    'TestStatus',
    'ABTest',
    'TestVariant',
    
    # Analytics
    'AnalyticsFeedbackSystem',
    'FeedbackType',
    'FeedbackRating',
    'SessionMetrics',
    
    # Conversational Chat
    'RealAPIConversationalTravelChat',
    'TripContext',
    'ConversationState',
]