This commit is contained in:
Saifeddine ALOUI 2024-03-03 00:32:52 +01:00
parent 90173f4167
commit 7552395394
6 changed files with 192 additions and 190 deletions

@ -1 +1 @@
Subproject commit 66e0af1548bf604029e388ff497c1c6a294f5e84
Subproject commit 6fc1f27d4e39b1650f266ed9058c8c31aabf3f02

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">
<title>LoLLMS WebUI - Welcome</title>
<script type="module" crossorigin src="/assets/index-c19a73f0.js"></script>
<script type="module" crossorigin src="/assets/index-5d830b39.js"></script>
<link rel="stylesheet" href="/assets/index-8e397dc7.css">
</head>
<body>

View File

@ -348,7 +348,9 @@ export const store = createStore({
async refreshModelsZoo({ commit }) {
console.log("Fetching models")
const response = await axios.get('/get_available_models');
commit('setModelsZoo',response.data.filter(model => model.variants && model.variants.length>0))
const models_zoo = response.data.filter(model => model.variants && model.variants.length>0)
console.log(`get_available_models: ${models_zoo}`)
commit('setModelsZoo', models_zoo)
},
async refreshModelStatus({ commit }) {
let modelstatus = await api_get_req("get_model_status");

@ -1 +1 @@
Subproject commit 89fc35854db59ee328e047f38d80fc8544468555
Subproject commit fce2c309b520be88b62e6d5c066016639e31d0a4

@ -1 +1 @@
Subproject commit 2a49edfd53022c1c12f3608fa76f30daf1c8085b
Subproject commit 0ae9e5ecb928e6a837ae1ad1c0ad13ee8d33a4bf