diff --git a/core/http/views/models.html b/core/http/views/models.html
index e6b62496c..4e3dd1020 100644
--- a/core/http/views/models.html
+++ b/core/http/views/models.html
@@ -51,6 +51,11 @@
models available
@@ -559,6 +564,7 @@ function modelsGallery() {
currentPage: 1,
totalPages: 1,
availableModels: 0,
+ installedModels: 0,
selectedModel: null,
jobProgress: {},
notifications: [],
@@ -597,6 +603,7 @@ function modelsGallery() {
this.currentPage = data.currentPage || 1;
this.totalPages = data.totalPages || 1;
this.availableModels = data.availableModels || 0;
+ this.installedModels = data.installedModels || 0;
} catch (error) {
console.error('Error fetching models:', error);
} finally {