added the possibility to select the model

This commit is contained in:
Saifeddine ALOUI 2024-03-24 15:47:31 +01:00
parent 8aa3c4eb40
commit a3c57bd6f9
6 changed files with 211 additions and 195 deletions

View File

@ -1,5 +1,5 @@
# =================== Lord Of Large Language Multimodal Systems Configuration file ===========================
version: 76
version: 77
binding_name: null
model_name: null
model_variant: null
@ -47,6 +47,7 @@ extensions: []
user_name: user
user_description: ""
use_user_name_in_discussions: false
use_model_name_in_discussions: false
user_avatar: default_user.svg
use_user_informations_in_discussion: false

@ -1 +1 @@
Subproject commit 6d32a1bc421f4d9e163ab41977008b42a08a2bee
Subproject commit 4bcbd59f302b5f81b74ac944d654e5f6a4784e23

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
View File

@ -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-6b4f7455.js"></script>
<link rel="stylesheet" href="/assets/index-a9383c4e.css">
<script type="module" crossorigin src="/assets/index-3c3c0f77.js"></script>
<link rel="stylesheet" href="/assets/index-51cca12d.css">
</head>
<body>
<div id="app"></div>

View File

@ -454,6 +454,21 @@
>
</td>
</tr>
<tr>
<td style="min-width: 200px;">
<label for="use_model_name_in_discussions" class="text-sm font-bold" style="margin-right: 1rem;">Use model name in discussion:</label>
</td>
<td style="width: 100%;">
<input
type="checkbox"
id="use_model_name_in_discussions"
required
v-model="configFile.use_model_name_in_discussions"
@change="settingsChanged=true"
class="mt-1 px-2 py-1 border border-gray-300 rounded dark:bg-gray-600"
>
</td>
</tr>
<!-- Row 3 -->