This commit is contained in:
Saifeddine ALOUI 2024-06-14 01:52:18 +02:00
parent 4bb7dda628
commit 8dbf83acc8
5 changed files with 25 additions and 8 deletions

@ -1 +1 @@
Subproject commit 9278d3c019314262fe641945a4a9dd3da7ed5660 Subproject commit f7334942f61e12bb03ae76e7263e359bc6fdd946

File diff suppressed because one or more lines are too long

2
web/dist/index.html vendored
View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LoLLMS WebUI - Welcome</title> <title>LoLLMS WebUI - Welcome</title>
<script type="module" crossorigin src="/assets/index-7d071b67.js"></script> <script type="module" crossorigin src="/assets/index-49e122b6.js"></script>
<link rel="stylesheet" href="/assets/index-33351f2b.css"> <link rel="stylesheet" href="/assets/index-33351f2b.css">
</head> </head>
<body> <body>

View File

@ -22,7 +22,7 @@
Playground Playground
</RouterLink> </RouterLink>
<RouterLink <RouterLink
v-if="$store.state.config.enable_sd_service" v-if="$store.state.config.enable_sd_service | $store.state.config.active_tti_service== 'autosd'"
:to="{ name: 'AutoSD' }" :to="{ name: 'AutoSD' }"
class="inline-block border-l border-t border-r rounded-t py-2 px-4 text-blue-700 font-semibold" class="inline-block border-l border-t border-r rounded-t py-2 px-4 text-blue-700 font-semibold"
:class="{ :class="{
@ -33,7 +33,7 @@
Auto111-SD Auto111-SD
</RouterLink> </RouterLink>
<RouterLink <RouterLink
v-if="$store.state.config.enable_comfyui_service" v-if="$store.state.config.enable_comfyui_service | $store.state.config.active_tti_service== 'comfyui'"
:to="{ name: 'ComfyUI' }" :to="{ name: 'ComfyUI' }"
class="inline-block border-l border-t border-r rounded-t py-2 px-4 text-blue-700 font-semibold" class="inline-block border-l border-t border-r rounded-t py-2 px-4 text-blue-700 font-semibold"
:class="{ :class="{
@ -44,7 +44,7 @@
ComfyUI ComfyUI
</RouterLink> </RouterLink>
<RouterLink <RouterLink
v-if="$store.state.config.active_tts_service!='None'" v-if="$store.state.config.active_tts_service!='None' & $store.state.config.active_stt_service!='None'"
:to="{ name: 'interactive' }" :to="{ name: 'interactive' }"
class="inline-block border-l border-t border-r rounded-t py-2 px-4 text-blue-700 font-semibold" class="inline-block border-l border-t border-r rounded-t py-2 px-4 text-blue-700 font-semibold"
:class="{ :class="{

View File

@ -876,6 +876,23 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="min-width: 200px;">
<label for="activate_internet_pages_judgement" class="text-sm font-bold" style="margin-right: 1rem;">Activate internet pages judgement:</label>
</td>
<td>
<div class="flex flex-row">
<input
type="checkbox"
id="activate_internet_pages_judgement"
required
v-model="configFile.activate_internet_pages_judgement"
@change="settingsChanged=true"
class="mt-1 px-2 py-1 border border-gray-300 rounded dark:bg-gray-600"
>
</div>
</td>
</tr>
<tr>
<td style="min-width: 200px;"> <td style="min-width: 200px;">
<label for="internet_quick_search" class="text-sm font-bold" style="margin-right: 1rem;">Activate quick search:</label> <label for="internet_quick_search" class="text-sm font-bold" style="margin-right: 1rem;">Activate quick search:</label>
</td> </td>