slapdash addition of scheduler selection

This commit is contained in:
tim h 2024-04-13 07:49:37 -05:00
parent 5236ab76af
commit 4946ae28b9
2 changed files with 25 additions and 3 deletions

View file

@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
@ -136,6 +136,21 @@
</button>
<label>Sampler:</label>
<div id="sampler-ac-select"></div>
<label>Scheduler:</label>
<br />
<select
id="schedulerSelect"
name="schedulerSelect"
onchange="changeScheduler()">
<option value="Automatic" selected="selected">Automatic</option>
<option value="Uniform">Uniform</option>
<option value="Karras">Karras</option>
<option value="Exponential">Exponential</option>
<option value="Polyexponential">Polyexponential</option>
<option value="SGM Uniform">SGM Uniform</option>
</select>
<!-- TODO scheduler isn't exposed via API that i can tell, un-hardcode when that's changed, add to localstorage settings, turn into magic type search autocomplete selectbox, disable selected attribute, all the stuff -->
<br />
<label for="seed">Seed (-1 for random):</label>
<br />
<input
@ -337,7 +352,7 @@
<br />
<span id="version">
<a href="https://github.com/zero01101/openOutpaint" target="_blank">
v20240302.001
v20240413.001
</a>
<br />
<a
@ -560,7 +575,7 @@
<!-- Content -->
<script src="js/prompt.js?v=7a1c68c" type="text/javascript"></script>
<script src="js/index.js?v=206c7df" type="text/javascript"></script>
<script src="js/index.js?v=6e33053" type="text/javascript"></script>
<script
src="js/ui/floating/history.js?v=4f29db4"

View file

@ -1403,6 +1403,13 @@ function changeStyles() {
stableDiffusionData.styles = selectedString;
}
function changeScheduler() {
const schedulerSelectEl = document.getElementById("schedulerSelect");
var selectedString = schedulerSelectEl.value;
stableDiffusionData.scheduler = selectedString;
}
async function getSamplers() {
var url = document.getElementById("host").value + "/sdapi/v1/samplers";