education-module-ai
Version:
AI Education Module using Agent Framework
19 lines (18 loc) • 493 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LearningSessionResource = void 0;
/**
* Learning session resource model
*/
class LearningSessionResource {
constructor() {
this.id = '';
this.userId = '';
this.subject = 'mathematics';
this.level = 'beginner';
this.startTime = new Date();
this.active = true;
this.messages = [];
}
}
exports.LearningSessionResource = LearningSessionResource;