text-generation-webui / js /update_big_picture.js
blaketm's picture
Upload folder using huggingface_hub
60be607
function updateBigPicture() {
var existingElement = document.querySelector('.bigProfilePicture');
if (existingElement) {
var timestamp = new Date().getTime();
existingElement.src = "/file/cache/pfp_character.png?time=" + timestamp;
}
}