betty2 / lib /collections /chatCollection.js
sdgsdggds's picture
Upload folder using huggingface_hub
e7c953d verified
'use strict';
var BaseCollection = require('./baseCollection.js');
function ChatCollection() {
this.maxLength = 512;
}
ChatCollection.prototype = Object.create(BaseCollection.prototype);
module.exports = ChatCollection;