mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-18 02:39:47 +00:00
cool
This commit is contained in:
parent
508dd0760e
commit
a188ab517d
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
web/dist/index.html
vendored
4
web/dist/index.html
vendored
@ -6,8 +6,8 @@
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LoLLMS WebUI - Welcome</title>
|
||||
<script type="module" crossorigin src="/assets/index-c57df815.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-902e767a.css">
|
||||
<script type="module" crossorigin src="/assets/index-e80fb0e0.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-bbaa5dec.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -5,7 +5,6 @@
|
||||
<div class="controls">
|
||||
<button v-if="!isAudioActive" class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded" @click="startAudioStream"><i data-feather="mic"></i> </button>
|
||||
<button v-if="isAudioActive" class="bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded" @click="stopAudioStream"><i data-feather="mic"></i></button>
|
||||
<span v-if="isAudioActive">FPS: {{ frameRate }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -44,7 +44,7 @@
|
||||
ComfyUI
|
||||
</RouterLink>
|
||||
<RouterLink
|
||||
v-if="$store.state.config.xtts_enable && $store.state.config.xtts_use_streaming_mode"
|
||||
v-if="$store.state.config.active_tts_service!='None'"
|
||||
:to="{ name: 'interactive' }"
|
||||
class="inline-block border-l border-t border-r rounded-t py-2 px-4 text-blue-700 font-semibold"
|
||||
:class="{
|
||||
|
@ -1288,6 +1288,7 @@
|
||||
@change="settingsChanged=true"
|
||||
class="w-full mt-1 px-2 py-1 border border-gray-300 rounded dark:bg-gray-600"
|
||||
>
|
||||
<option value="None">None</option>
|
||||
<option value="xtts">XTTS</option>
|
||||
<option value="openai_tts">Open AI TTS</option>
|
||||
</select>
|
||||
@ -1305,6 +1306,7 @@
|
||||
@change="settingsChanged=true"
|
||||
class="w-full mt-1 px-2 py-1 border border-gray-300 rounded dark:bg-gray-600"
|
||||
>
|
||||
<option value="None">None</option>
|
||||
<option value="autosd">AUTO1111's SD</option>
|
||||
<option value="dall-e">Open AI DALL-E</option>
|
||||
<option value="midjourney">Midjourney</option>
|
||||
@ -1325,6 +1327,7 @@
|
||||
@change="settingsChanged=true"
|
||||
class="w-full mt-1 px-2 py-1 border border-gray-300 rounded dark:bg-gray-600"
|
||||
>
|
||||
<option value="None">None</option>
|
||||
<option value="whisper">Whisper</option>
|
||||
<option value="openai_whisper">Open AI Whisper</option>
|
||||
</select>
|
||||
|
Loading…
Reference in New Issue
Block a user