VocRT / backend /utils /session.js
anuragsingh922's picture
Upload folder using huggingface_hub
d7dfeff verified
raw
history blame contribute delete
303 Bytes
class Session {
constructor() {
this.call = null;
this.client = null;
this.channel = null;
this.saved = false;
this.starttime = Date.now();
this.cansend = false;
this.chathistory = [];
this.chathistorybackup = [];
this.latency = 0;
}
}
module.exports = Session;