text-generation-webui / js /update_big_picture.js
xsigus24's picture
Upload folder using huggingface_hub
1d777c4
raw history blame
No virus
250 Bytes
function updateBigPicture() {
var existingElement = document.querySelector('.bigProfilePicture');
if (existingElement) {
var timestamp = new Date().getTime();
existingElement.src = "/file/cache/pfp_character.png?time=" + timestamp;
}
}