Spaces:
Sleeping
Sleeping
| """ | |
| 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', | |
| ] | |