* initially add text_generation_webui support * add env requirements install * add necessary dependencies * update for starting webui * update shared and noted to place models * update heading of part3 * meet comments * add copyright license * remove extensions * convert tutorial to windows side * add warm-up to optimize performance
7 lines
250 B
JavaScript
7 lines
250 B
JavaScript
function updateBigPicture() {
|
|
var existingElement = document.querySelector(".bigProfilePicture");
|
|
if (existingElement) {
|
|
var timestamp = new Date().getTime();
|
|
existingElement.src = "/file/cache/pfp_character.png?time=" + timestamp;
|
|
}
|
|
}
|