[fix] fixed typescript errors in sd

This commit is contained in:
kwaroran
2023-05-08 22:43:11 +09:00
parent 167171b2b7
commit 8c88abe7be
2 changed files with 2 additions and 2 deletions

View File

@@ -264,7 +264,7 @@
<option value="false" class="bg-darkbg appearance-none">Disable</option> <option value="false" class="bg-darkbg appearance-none">Disable</option>
<option value="true" class="bg-darkbg appearance-none">Enable</option> <option value="true" class="bg-darkbg appearance-none">Enable</option>
</select> </select>
{#if $DataBase.sdConfig.enable_hr === "true"} {#if $DataBase.sdConfig.enable_hr === true}
<span class="text-neutral-200">denoising_strength</span> <span class="text-neutral-200">denoising_strength</span>
<input class="text-neutral-200 mb-4 p-2 bg-transparent input-text focus:bg-selected text-sm" type="number" min={0} max="10" bind:value={$DataBase.sdConfig.denoising_strength}> <input class="text-neutral-200 mb-4 p-2 bg-transparent input-text focus:bg-selected text-sm" type="number" min={0} max="10" bind:value={$DataBase.sdConfig.denoising_strength}>
<span class="text-neutral-200">hr_scale</span> <span class="text-neutral-200">hr_scale</span>

View File

@@ -4,6 +4,7 @@ import { requestChatData } from "./request"
import { alertError } from "../alert" import { alertError } from "../alert"
import { globalFetch } from "../globalApi" import { globalFetch } from "../globalApi"
import { CharEmotion } from "../stores" import { CharEmotion } from "../stores"
import type { OpenAIChat } from "."
export async function stableDiff(currentChar:character,prompt:string){ export async function stableDiff(currentChar:character,prompt:string){
@@ -133,7 +134,6 @@ export async function stableDiff(currentChar:character,prompt:string){
"denoising_strength": db.sdConfig.denoising_strength, "denoising_strength": db.sdConfig.denoising_strength,
"hr_scale": db.sdConfig.hr_scale, "hr_scale": db.sdConfig.hr_scale,
"hr_upscaler": db.sdConfig.hr_upscaler "hr_upscaler": db.sdConfig.hr_upscaler
'sampler_name': db.sdConfig.sampler_name
}, },
headers:{ headers:{
'Content-Type': 'application/json' 'Content-Type': 'application/json'