2024-02-22 02:12:01 +00:00
|
|
|
<script lang="ts">
|
2024-03-01 09:18:07 +00:00
|
|
|
import { toast } from 'svelte-sonner';
|
2024-02-22 02:12:01 +00:00
|
|
|
|
2024-03-01 04:40:36 +00:00
|
|
|
import { createEventDispatcher, onMount, getContext } from 'svelte';
|
2024-08-20 23:21:03 +00:00
|
|
|
import { config as backendConfig, user } from '$lib/stores';
|
|
|
|
|
|
|
|
import { getBackendConfig } from '$lib/apis';
|
2024-02-22 02:12:01 +00:00
|
|
|
import {
|
2024-03-09 00:22:19 +00:00
|
|
|
getImageGenerationModels,
|
|
|
|
getImageGenerationConfig,
|
|
|
|
updateImageGenerationConfig,
|
2024-08-20 23:21:03 +00:00
|
|
|
getConfig,
|
|
|
|
updateConfig
|
2024-02-22 02:12:01 +00:00
|
|
|
} from '$lib/apis/images';
|
2024-06-25 12:15:29 +00:00
|
|
|
import SensitiveInput from '$lib/components/common/SensitiveInput.svelte';
|
2024-08-20 22:35:42 +00:00
|
|
|
import Switch from '$lib/components/common/Switch.svelte';
|
2024-08-21 12:16:33 +00:00
|
|
|
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
2024-02-22 02:12:01 +00:00
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
|
2024-03-01 04:40:36 +00:00
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
2024-02-22 02:12:01 +00:00
|
|
|
let loading = false;
|
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
let config = null;
|
|
|
|
let imageGenerationConfig = null;
|
2024-03-23 22:38:59 +00:00
|
|
|
|
2024-02-25 02:51:13 +00:00
|
|
|
let models = null;
|
2024-02-22 02:12:01 +00:00
|
|
|
|
2024-08-21 12:16:33 +00:00
|
|
|
let workflowNodes = [
|
|
|
|
{
|
|
|
|
type: 'prompt',
|
|
|
|
key: 'text',
|
|
|
|
node_ids: []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'model',
|
|
|
|
key: 'ckpt_name',
|
|
|
|
node_ids: []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'width',
|
|
|
|
key: 'width',
|
|
|
|
node_ids: []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'height',
|
|
|
|
key: 'height',
|
|
|
|
node_ids: []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'steps',
|
|
|
|
key: 'steps',
|
|
|
|
node_ids: []
|
|
|
|
}
|
|
|
|
];
|
2024-02-23 03:32:36 +00:00
|
|
|
|
2024-02-22 03:06:27 +00:00
|
|
|
const getModels = async () => {
|
2024-03-09 00:22:19 +00:00
|
|
|
models = await getImageGenerationModels(localStorage.token).catch((error) => {
|
2024-02-22 03:06:27 +00:00
|
|
|
toast.error(error);
|
2024-02-25 02:51:13 +00:00
|
|
|
return null;
|
2024-02-24 23:48:14 +00:00
|
|
|
});
|
2024-02-22 03:06:27 +00:00
|
|
|
};
|
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
const updateConfigHandler = async () => {
|
|
|
|
const res = await updateConfig(localStorage.token, config).catch((error) => {
|
2024-03-09 00:22:19 +00:00
|
|
|
toast.error(error);
|
|
|
|
return null;
|
|
|
|
});
|
2024-02-22 03:06:27 +00:00
|
|
|
|
2024-03-09 00:22:19 +00:00
|
|
|
if (res) {
|
2024-08-20 23:21:03 +00:00
|
|
|
config = res;
|
2024-03-09 00:22:19 +00:00
|
|
|
}
|
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
if (config.enabled) {
|
|
|
|
backendConfig.set(await getBackendConfig());
|
2024-03-09 00:22:19 +00:00
|
|
|
getModels();
|
2024-02-22 02:57:53 +00:00
|
|
|
}
|
2024-02-22 02:12:01 +00:00
|
|
|
};
|
|
|
|
|
2024-08-21 12:16:33 +00:00
|
|
|
const validateJSON = (json) => {
|
|
|
|
try {
|
|
|
|
const obj = JSON.parse(json);
|
|
|
|
|
|
|
|
if (obj && typeof obj === 'object') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} catch (e) {}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
const saveHandler = async () => {
|
|
|
|
loading = true;
|
|
|
|
|
2024-08-21 12:16:33 +00:00
|
|
|
if (config?.comfyui?.COMFYUI_WORKFLOW) {
|
|
|
|
if (!validateJSON(config.comfyui.COMFYUI_WORKFLOW)) {
|
|
|
|
toast.error('Invalid JSON format for ComfyUI Workflow.');
|
|
|
|
loading = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
await updateConfig(localStorage.token, config).catch((error) => {
|
|
|
|
toast.error(error);
|
|
|
|
loading = false;
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
|
|
|
|
await updateImageGenerationConfig(localStorage.token, imageGenerationConfig).catch((error) => {
|
|
|
|
toast.error(error);
|
|
|
|
loading = false;
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
|
|
|
|
dispatch('save');
|
|
|
|
loading = false;
|
|
|
|
};
|
|
|
|
|
2024-02-22 02:12:01 +00:00
|
|
|
onMount(async () => {
|
|
|
|
if ($user.role === 'admin') {
|
2024-08-20 23:21:03 +00:00
|
|
|
const res = await getConfig(localStorage.token).catch((error) => {
|
2024-03-09 00:22:19 +00:00
|
|
|
toast.error(error);
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (res) {
|
2024-08-20 23:21:03 +00:00
|
|
|
config = res;
|
2024-03-09 00:22:19 +00:00
|
|
|
}
|
2024-03-23 22:38:59 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
if (config.enabled) {
|
|
|
|
getModels();
|
|
|
|
}
|
2024-02-22 02:12:01 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
const imageConfigRes = await getImageGenerationConfig(localStorage.token).catch((error) => {
|
|
|
|
toast.error(error);
|
|
|
|
return null;
|
|
|
|
});
|
2024-03-09 00:22:19 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
if (imageConfigRes) {
|
|
|
|
imageGenerationConfig = imageConfigRes;
|
2024-02-22 02:12:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<form
|
|
|
|
class="flex flex-col h-full justify-between space-y-3 text-sm"
|
|
|
|
on:submit|preventDefault={async () => {
|
2024-08-20 23:21:03 +00:00
|
|
|
saveHandler();
|
2024-02-22 02:12:01 +00:00
|
|
|
}}
|
|
|
|
>
|
2024-08-20 23:21:03 +00:00
|
|
|
<div class=" space-y-3 overflow-y-scroll scrollbar-hidden pr-2">
|
|
|
|
{#if config && imageGenerationConfig}
|
2024-08-20 22:35:42 +00:00
|
|
|
<div>
|
2024-08-20 23:21:03 +00:00
|
|
|
<div class=" mb-1 text-sm font-medium">{$i18n.t('Image Settings')}</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class=" py-0.5 flex w-full justify-between">
|
|
|
|
<div class=" self-center text-xs font-medium">
|
|
|
|
{$i18n.t('Image Generation (Experimental)')}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="px-1">
|
|
|
|
<Switch
|
|
|
|
bind:state={config.enabled}
|
|
|
|
on:change={(e) => {
|
|
|
|
const enabled = e.detail;
|
|
|
|
|
|
|
|
if (enabled) {
|
|
|
|
if (
|
|
|
|
config.engine === 'automatic1111' &&
|
|
|
|
config.automatic1111.AUTOMATIC1111_BASE_URL === ''
|
|
|
|
) {
|
|
|
|
toast.error($i18n.t('AUTOMATIC1111 Base URL is required.'));
|
|
|
|
config.enabled = false;
|
|
|
|
} else if (
|
|
|
|
config.engine === 'comfyui' &&
|
|
|
|
config.comfyui.COMFYUI_BASE_URL === ''
|
|
|
|
) {
|
|
|
|
toast.error($i18n.t('ComfyUI Base URL is required.'));
|
|
|
|
config.enabled = false;
|
|
|
|
} else if (config.engine === 'openai' && config.openai.OPENAI_API_KEY === '') {
|
|
|
|
toast.error($i18n.t('OpenAI API Key is required.'));
|
|
|
|
config.enabled = false;
|
|
|
|
}
|
2024-08-20 22:35:42 +00:00
|
|
|
}
|
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
updateConfigHandler();
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
2024-08-20 22:35:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
<div class=" py-0.5 flex w-full justify-between">
|
|
|
|
<div class=" self-center text-xs font-medium">{$i18n.t('Image Generation Engine')}</div>
|
|
|
|
<div class="flex items-center relative">
|
|
|
|
<select
|
|
|
|
class="w-fit pr-8 rounded px-2 p-1 text-xs bg-transparent outline-none text-right"
|
|
|
|
bind:value={config.engine}
|
|
|
|
placeholder={$i18n.t('Select Engine')}
|
|
|
|
on:change={async () => {
|
|
|
|
updateConfigHandler();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<option value="openai">{$i18n.t('Default (Open AI)')}</option>
|
|
|
|
<option value="comfyui">{$i18n.t('ComfyUI')}</option>
|
|
|
|
<option value="automatic1111">{$i18n.t('Automatic1111')}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2024-03-09 00:22:19 +00:00
|
|
|
</div>
|
2024-02-22 02:12:01 +00:00
|
|
|
</div>
|
2024-08-20 23:21:03 +00:00
|
|
|
<hr class=" dark:border-gray-850" />
|
2024-03-09 00:22:19 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
{#if (config?.engine ?? 'automatic1111') === 'automatic1111'}
|
|
|
|
<div>
|
|
|
|
<div class=" mb-2 text-sm font-medium">{$i18n.t('AUTOMATIC1111 Base URL')}</div>
|
|
|
|
<div class="flex w-full">
|
|
|
|
<div class="flex-1 mr-2">
|
|
|
|
<input
|
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
|
|
|
|
placeholder={$i18n.t('Enter URL (e.g. http://127.0.0.1:7860/)')}
|
|
|
|
bind:value={config.automatic1111.AUTOMATIC1111_BASE_URL}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<button
|
|
|
|
class="px-2.5 bg-gray-50 hover:bg-gray-100 text-gray-800 dark:bg-gray-850 dark:hover:bg-gray-800 dark:text-gray-100 rounded-lg transition"
|
|
|
|
type="button"
|
|
|
|
on:click={() => {
|
|
|
|
updateConfigHandler();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="0 0 20 20"
|
|
|
|
fill="currentColor"
|
|
|
|
class="w-4 h-4"
|
|
|
|
>
|
|
|
|
<path
|
|
|
|
fill-rule="evenodd"
|
|
|
|
d="M15.312 11.424a5.5 5.5 0 01-9.201 2.466l-.312-.311h2.433a.75.75 0 000-1.5H3.989a.75.75 0 00-.75.75v4.242a.75.75 0 001.5 0v-2.43l.31.31a7 7 0 0011.712-3.138.75.75 0 00-1.449-.39zm1.23-3.723a.75.75 0 00.219-.53V2.929a.75.75 0 00-1.5 0V5.36l-.31-.31A7 7 0 003.239 8.188a.75.75 0 101.448.389A5.5 5.5 0 0113.89 6.11l.311.31h-2.432a.75.75 0 000 1.5h4.243a.75.75 0 00.53-.219z"
|
|
|
|
clip-rule="evenodd"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
|
|
|
|
{$i18n.t('Include `--api` flag when running stable-diffusion-webui')}
|
|
|
|
<a
|
|
|
|
class=" text-gray-300 font-medium"
|
|
|
|
href="https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/3734"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
{$i18n.t('(e.g. `sh webui.sh --api`)')}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-06-20 06:15:49 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
<div>
|
|
|
|
<div class=" mb-2 text-sm font-medium">
|
|
|
|
{$i18n.t('AUTOMATIC1111 Api Auth String')}
|
|
|
|
</div>
|
|
|
|
<SensitiveInput
|
|
|
|
placeholder={$i18n.t('Enter api auth string (e.g. username:password)')}
|
|
|
|
bind:value={config.automatic1111.AUTOMATIC1111_API_AUTH}
|
|
|
|
required={false}
|
2024-03-23 22:38:59 +00:00
|
|
|
/>
|
2024-04-23 11:14:31 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
|
|
|
|
{$i18n.t('Include `--api-auth` flag when running stable-diffusion-webui')}
|
|
|
|
<a
|
|
|
|
class=" text-gray-300 font-medium"
|
|
|
|
href="https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/13993"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
{$i18n
|
|
|
|
.t('(e.g. `sh webui.sh --api --api-auth username_password`)')
|
|
|
|
.replace('_', ':')}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{:else if config?.engine === 'comfyui'}
|
|
|
|
<div class="">
|
|
|
|
<div class=" mb-2 text-sm font-medium">{$i18n.t('ComfyUI Base URL')}</div>
|
|
|
|
<div class="flex w-full">
|
|
|
|
<div class="flex-1 mr-2">
|
|
|
|
<input
|
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
|
|
|
|
placeholder={$i18n.t('Enter URL (e.g. http://127.0.0.1:7860/)')}
|
|
|
|
bind:value={config.comfyui.COMFYUI_BASE_URL}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<button
|
|
|
|
class="px-2.5 bg-gray-50 hover:bg-gray-100 text-gray-800 dark:bg-gray-850 dark:hover:bg-gray-800 dark:text-gray-100 rounded-lg transition"
|
|
|
|
type="button"
|
|
|
|
on:click={() => {
|
|
|
|
updateConfigHandler();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="0 0 20 20"
|
|
|
|
fill="currentColor"
|
|
|
|
class="w-4 h-4"
|
|
|
|
>
|
|
|
|
<path
|
|
|
|
fill-rule="evenodd"
|
|
|
|
d="M15.312 11.424a5.5 5.5 0 01-9.201 2.466l-.312-.311h2.433a.75.75 0 000-1.5H3.989a.75.75 0 00-.75.75v4.242a.75.75 0 001.5 0v-2.43l.31.31a7 7 0 0011.712-3.138.75.75 0 00-1.449-.39zm1.23-3.723a.75.75 0 00.219-.53V2.929a.75.75 0 00-1.5 0V5.36l-.31-.31A7 7 0 003.239 8.188a.75.75 0 101.448.389A5.5 5.5 0 0113.89 6.11l.311.31h-2.432a.75.75 0 000 1.5h4.243a.75.75 0 00.53-.219z"
|
|
|
|
clip-rule="evenodd"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="">
|
|
|
|
<div class=" mb-2 text-sm font-medium">{$i18n.t('ComfyUI Workflow')}</div>
|
2024-04-23 11:14:31 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
{#if config.comfyui.COMFYUI_WORKFLOW}
|
|
|
|
<textarea
|
|
|
|
class="w-full rounded-lg mb-1 py-2 px-4 text-xs bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none disabled:text-gray-600 resize-none"
|
|
|
|
rows="10"
|
|
|
|
value={JSON.stringify(JSON.parse(config.comfyui.COMFYUI_WORKFLOW), null, 2)}
|
|
|
|
/>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
<div class="flex w-full">
|
|
|
|
<div class="flex-1">
|
|
|
|
<input
|
|
|
|
id="upload-comfyui-workflow-input"
|
|
|
|
hidden
|
|
|
|
type="file"
|
|
|
|
accept=".json"
|
|
|
|
on:change={(e) => {
|
|
|
|
const file = e.target.files[0];
|
|
|
|
const reader = new FileReader();
|
|
|
|
|
|
|
|
reader.onload = (e) => {
|
|
|
|
config.comfyui.COMFYUI_WORKFLOW = e.target.result;
|
|
|
|
updateConfigHandler();
|
|
|
|
|
|
|
|
e.target.value = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
reader.readAsText(file);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="w-full text-sm font-medium py-2 bg-transparent hover:bg-gray-100 border border-dashed dark:border-gray-800 dark:hover:bg-gray-850 text-center rounded-xl"
|
|
|
|
type="button"
|
|
|
|
on:click={() => {
|
|
|
|
document.getElementById('upload-comfyui-workflow-input')?.click();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{$i18n.t('Click here to upload a workflow.json file.')}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
|
|
|
|
{$i18n.t('Make sure to export a workflow.json file as API format from ComfyUI.')}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{#if config.comfyui.COMFYUI_WORKFLOW}
|
|
|
|
<div class="">
|
|
|
|
<div class=" mb-2 text-sm font-medium">{$i18n.t('ComfyUI Workflow Nodes')}</div>
|
|
|
|
|
2024-08-21 12:16:33 +00:00
|
|
|
<div class="text-xs flex flex-col gap-1">
|
|
|
|
{#each workflowNodes as node}
|
|
|
|
<div class="flex w-full items-center border border-gray-850 rounded-lg">
|
|
|
|
<div class="flex-shrink-0">
|
|
|
|
<div
|
|
|
|
class=" capitalize line-clamp-1 font-medium px-3 py-1 w-20 text-center rounded-l-lg bg-green-500/20 text-green-700 dark:text-green-200"
|
|
|
|
>
|
|
|
|
{node.type}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="">
|
|
|
|
<Tooltip content="Input Key (e.g. text, unet_name, steps)">
|
|
|
|
<input
|
|
|
|
class="py-1 px-3 w-24 text-xs text-center bg-transparent outline-none border-r border-gray-850"
|
|
|
|
placeholder="Key"
|
|
|
|
bind:value={node.key}
|
|
|
|
/>
|
|
|
|
</Tooltip>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="w-full">
|
|
|
|
<Tooltip
|
|
|
|
content="Comma separated Node Ids (e.g. 1,2,3)"
|
|
|
|
placement="top-start"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
class="w-full py-1 px-4 rounded-r-lg text-xs bg-transparent outline-none"
|
|
|
|
placeholder="Node Ids"
|
|
|
|
bind:value={node.node_ids}
|
|
|
|
/>
|
|
|
|
</Tooltip>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/each}
|
2024-08-20 23:39:30 +00:00
|
|
|
</div>
|
2024-08-20 23:21:03 +00:00
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{:else if config?.engine === 'openai'}
|
|
|
|
<div>
|
|
|
|
<div class=" mb-1.5 text-sm font-medium">{$i18n.t('OpenAI API Config')}</div>
|
|
|
|
|
|
|
|
<div class="flex gap-2 mb-1">
|
|
|
|
<input
|
|
|
|
class="flex-1 w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
|
|
|
|
placeholder={$i18n.t('API Base URL')}
|
|
|
|
bind:value={config.openai.OPENAI_API_BASE_URL}
|
|
|
|
required
|
|
|
|
/>
|
|
|
|
|
|
|
|
<SensitiveInput
|
|
|
|
placeholder={$i18n.t('API Key')}
|
|
|
|
bind:value={config.openai.OPENAI_API_KEY}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/if}
|
2024-03-09 01:38:10 +00:00
|
|
|
</div>
|
2024-02-22 02:12:01 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
{#if config?.enabled}
|
|
|
|
<hr class=" dark:border-gray-850" />
|
2024-02-22 02:12:01 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
<div>
|
|
|
|
<div class=" mb-2.5 text-sm font-medium">{$i18n.t('Set Default Model')}</div>
|
|
|
|
<div class="flex w-full">
|
|
|
|
<div class="flex-1 mr-2">
|
2024-04-23 11:20:24 +00:00
|
|
|
<div class="flex w-full">
|
|
|
|
<div class="flex-1">
|
|
|
|
<input
|
|
|
|
list="model-list"
|
2024-07-09 03:10:00 +00:00
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
|
2024-08-20 23:21:03 +00:00
|
|
|
bind:value={imageGenerationConfig.MODEL}
|
2024-04-23 11:20:24 +00:00
|
|
|
placeholder="Select a model"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<datalist id="model-list">
|
|
|
|
{#each models ?? [] as model}
|
|
|
|
<option value={model.id}>{model.name}</option>
|
|
|
|
{/each}
|
|
|
|
</datalist>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-20 23:21:03 +00:00
|
|
|
</div>
|
2024-02-22 02:12:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-02-23 03:40:51 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
<div>
|
|
|
|
<div class=" mb-2.5 text-sm font-medium">{$i18n.t('Set Image Size')}</div>
|
|
|
|
<div class="flex w-full">
|
|
|
|
<div class="flex-1 mr-2">
|
|
|
|
<input
|
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
|
|
|
|
placeholder={$i18n.t('Enter Image Size (e.g. 512x512)')}
|
|
|
|
bind:value={imageGenerationConfig.IMAGE_SIZE}
|
|
|
|
/>
|
|
|
|
</div>
|
2024-02-23 03:40:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-02-24 15:44:08 +00:00
|
|
|
|
2024-08-20 23:21:03 +00:00
|
|
|
<div>
|
|
|
|
<div class=" mb-2.5 text-sm font-medium">{$i18n.t('Set Steps')}</div>
|
|
|
|
<div class="flex w-full">
|
|
|
|
<div class="flex-1 mr-2">
|
|
|
|
<input
|
|
|
|
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
|
|
|
|
placeholder={$i18n.t('Enter Number of Steps (e.g. 50)')}
|
|
|
|
bind:value={imageGenerationConfig.IMAGE_STEPS}
|
|
|
|
/>
|
|
|
|
</div>
|
2024-02-24 15:44:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-20 23:21:03 +00:00
|
|
|
{/if}
|
2024-02-22 02:12:01 +00:00
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex justify-end pt-3 text-sm font-medium">
|
|
|
|
<button
|
2024-03-10 06:02:27 +00:00
|
|
|
class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg flex flex-row space-x-1 items-center {loading
|
2024-02-22 02:12:01 +00:00
|
|
|
? ' cursor-not-allowed'
|
|
|
|
: ''}"
|
|
|
|
type="submit"
|
|
|
|
disabled={loading}
|
|
|
|
>
|
2024-03-04 08:53:56 +00:00
|
|
|
{$i18n.t('Save')}
|
2024-02-22 02:12:01 +00:00
|
|
|
|
|
|
|
{#if loading}
|
|
|
|
<div class="ml-2 self-center">
|
|
|
|
<svg
|
|
|
|
class=" w-4 h-4"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
fill="currentColor"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
><style>
|
|
|
|
.spinner_ajPY {
|
|
|
|
transform-origin: center;
|
|
|
|
animation: spinner_AtaB 0.75s infinite linear;
|
|
|
|
}
|
|
|
|
@keyframes spinner_AtaB {
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style><path
|
|
|
|
d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z"
|
|
|
|
opacity=".25"
|
|
|
|
/><path
|
|
|
|
d="M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z"
|
|
|
|
class="spinner_ajPY"
|
|
|
|
/></svg
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|