mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 04:17:52 +00:00
Merge branch 'lollms-patchy2' into dev
This commit is contained in:
commit
08ce9c7285
@ -52,14 +52,19 @@
|
||||
|
||||
{{ personality.author }}
|
||||
</div>
|
||||
<!-- <div class="">
|
||||
<b>Language: </b>
|
||||
{{ personality.language }}
|
||||
</div>
|
||||
<div class="">
|
||||
<b>Category: </b>
|
||||
{{ personality.category }}
|
||||
</div> -->
|
||||
<div class="flex items-center">
|
||||
<i data-feather="globe" class="w-5 m-1"></i>
|
||||
<b>Language: </b>
|
||||
|
||||
{{ personality.language }}
|
||||
</div>
|
||||
<div class="flex items-center">
|
||||
<i data-feather="bookmark" class="w-5 m-1"></i>
|
||||
<b>Category: </b>
|
||||
|
||||
{{ personality.category }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="flex items-center">
|
||||
<i data-feather="info" class="w-5 m-1"></i>
|
||||
|
@ -1319,8 +1319,12 @@ export default {
|
||||
const progressListener = (response) => {
|
||||
console.log("received something");
|
||||
if (response.status && response.progress <= 100) {
|
||||
console.log(`Progress = ${response.progress}`);
|
||||
console.log(`Progress`,response);
|
||||
model_object.progress = response.progress
|
||||
model_object.speed = response.speed
|
||||
model_object.total_size = response.total_size
|
||||
model_object.downloaded_size = response.downloaded_size
|
||||
model_object.start_time = response.start_time
|
||||
model_object.installing = true
|
||||
if (model_object.progress == 100) {
|
||||
const index = this.models.findIndex((model) => model.path === path);
|
||||
|
Loading…
Reference in New Issue
Block a user