mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
synced
This commit is contained in:
parent
d21b531522
commit
f61713ec63
@ -1,5 +1,5 @@
|
||||
# =================== Lord Of Large Language Multimodal Systems Configuration file ===========================
|
||||
version: 123
|
||||
version: 124
|
||||
binding_name: null
|
||||
model_name: null
|
||||
model_variant: null
|
||||
@ -258,6 +258,7 @@ rag_activate_multi_hops: false #if true, we use multi hops algorithm to do multi
|
||||
rag_min_nb_tokens_in_chunk: 10 #this removed any useless junk ith less than x tokens
|
||||
rag_max_n_hops: 3 #We set the maximum number of hop in multi hops rag
|
||||
|
||||
contextual_summary: false #If activated this will completely replace the rag and instead will use contextual summary
|
||||
|
||||
activate_skills_lib: false # Activate vectorizing previous conversations
|
||||
skills_lib_database_name: "default" # Default skills database
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 367111bab7ce5d417f27b7d85e1ecfa8cfea2922
|
||||
Subproject commit 059f36aae23abd141f24490258ced6d690ab3681
|
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-01362090.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-b98243ba.css">
|
||||
<script type="module" crossorigin src="/assets/index-e55d062d.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-a84fbfd3.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -1154,6 +1154,18 @@
|
||||
class="w-5 mt-1 px-2 py-1 border border-gray-300 rounded dark:bg-gray-600"
|
||||
>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="min-width: 200px;">
|
||||
<label for="contextual_summary" class="text-sm font-bold" style="margin-right: 1rem;">Use contextual summary instead of rag (consumes alot of tokens and may be very slow but efficient, useful for summary and global questions that RAG can't do):</label>
|
||||
</td>
|
||||
<td>
|
||||
<input v-model="configFile.contextual_summary"
|
||||
type="checkbox"
|
||||
@change="settingsChanged=true"
|
||||
class="w-5 mt-1 px-2 py-1 border border-gray-300 rounded dark:bg-gray-600"
|
||||
>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 381c2a90bcf6d02100448a7d91c66222b8cc68a8
|
||||
Subproject commit f991f3f585be4904bba822301bc01eeb94d771f1
|
@ -1 +1 @@
|
||||
Subproject commit 81d218860024938d2fcfc7ddd89394853b261dc4
|
||||
Subproject commit 4ca7182fbe310a5efdc429eaf4a0ddbb4af03d6d
|
Loading…
Reference in New Issue
Block a user