Meet Patel
Implement storage layer and adaptive learning tools for TutorX-MCP
250bf8c
raw
history blame contribute delete
654 Bytes
"""
Data models for TutorX-MCP adaptive learning system.
This module provides data models for:
- Student profiles
- Performance metrics
- Learning sessions
- Adaptive learning data structures
"""
from .student_profile import StudentProfile, LearningStyle, LearningPreferences
from .performance_metrics import PerformanceMetrics, SessionMetrics, ConceptMetrics
from .learning_session import LearningSession, SessionState, SessionEvent
__all__ = [
'StudentProfile',
'LearningStyle',
'LearningPreferences',
'PerformanceMetrics',
'SessionMetrics',
'ConceptMetrics',
'LearningSession',
'SessionState',
'SessionEvent'
]