Translate UI to English and add PWA support

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-25 15:32:10 +02:00
parent 2f28b6a52a
commit 3ba6a9a41c
9 changed files with 190 additions and 65 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ async function fetchHealth() {
async function fetchModels() {
try {
const response = await fetch(`${API_BASE}/models`);
if (!response.ok) throw new Error("Errore nel caricamento");
if (!response.ok) throw new Error("Failed to load models");
const data = await response.json();
const models = data.models || [];