mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2025-12-06 07:12:10 +01:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
function scrollToTop() {
|
|
window.scrollTo({ top: 0 });
|
|
}
|
|
|
|
function findButtonsByText(buttonText) {
|
|
const buttons = document.getElementsByTagName("button");
|
|
const matchingButtons = [];
|
|
|
|
for (let i = 0; i < buttons.length; i++) {
|
|
if (buttons[i].textContent.trim() === buttonText) {
|
|
matchingButtons.push(buttons[i]);
|
|
}
|
|
}
|
|
|
|
return matchingButtons;
|
|
}
|
|
|
|
function switch_to_chat() {
|
|
document.getElementById("chat-tab-button").click();
|
|
scrollToTop();
|
|
}
|
|
|
|
function switch_to_notebook() {
|
|
document.getElementById("notebook-parent-tab-button").click();
|
|
findButtonsByText("Raw")[1].click();
|
|
scrollToTop();
|
|
}
|
|
|
|
function switch_to_generation_parameters() {
|
|
document.getElementById("parameters-button").click();
|
|
findButtonsByText("Generation")[0].click();
|
|
scrollToTop();
|
|
}
|
|
|
|
function switch_to_character() {
|
|
document.getElementById("character-tab-button").click();
|
|
scrollToTop();
|
|
}
|
|
|
|
function switch_to_image_ai_generate() {
|
|
const container = document.querySelector("#image-ai-tab");
|
|
const buttons = container.getElementsByTagName("button");
|
|
|
|
for (let i = 0; i < buttons.length; i++) {
|
|
if (buttons[i].textContent.trim() === "Generate") {
|
|
buttons[i].click();
|
|
break;
|
|
}
|
|
}
|
|
|
|
scrollToTop();
|
|
}
|