mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-18 02:39:47 +00:00
Last version of the alpha 7.5
This commit is contained in:
parent
c6a3618957
commit
5ab1bad06b
@ -838,7 +838,8 @@ class LoLLMsAPI(LollmsApplication):
|
||||
if self.personality.processor is not None:
|
||||
self.start_time = datetime.now()
|
||||
self.personality.processor.callback = partial(self.process_chunk, client_id=client_id)
|
||||
self.personality.processor.execute_command(command, parameters)
|
||||
self.connections[client_id]['generation_thread'] = threading.Thread(target=self.personality.processor.execute_command, args=(command, parameters))
|
||||
self.connections[client_id]['generation_thread'].start()
|
||||
else:
|
||||
self.notify("Non scripted personalities do not support commands",False,client_id)
|
||||
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 5144aa71e678b8a31b62c2777310cbea220dd235
|
||||
Subproject commit 01b560bcf646872e06d935a3239cee81a3f92766
|
@ -1 +1 @@
|
||||
Subproject commit 875dcbf74deaa3b939f8dee8874eb9ba5c155c4f
|
||||
Subproject commit 0c074692592f9e0eb78797f5364d01287ca68f1d
|
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-f47ebc0b.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-9e6c908b.css">
|
||||
<script type="module" crossorigin src="/assets/index-1800e546.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index-29ecfd0d.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -1879,9 +1879,9 @@ export default {
|
||||
},
|
||||
async selectSortOption(index){
|
||||
this.$store.state.sort_type=index
|
||||
this.updateModelsZoo();
|
||||
this.modelsFiltered = []
|
||||
this.updateModelsZoo();
|
||||
console.log(`Selected sorting:${index}`)
|
||||
console.log(`models:${this.models_zoo}`)
|
||||
},
|
||||
handleRadioSelected(index){
|
||||
this.isLoading = true;
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit f6903aace52016a4e85e568798e280c02c8a567f
|
||||
Subproject commit 9343e4c0d24ca4a388d9bb8f1f63ae058fe85157
|
Loading…
Reference in New Issue
Block a user