Add files via upload

refined available models view for copy and paste with open ai compatible endpoints
This commit is contained in:
Alpha Nerd 2025-09-02 12:48:19 +02:00 committed by GitHub
parent b27b3608ce
commit f01843d12b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -130,7 +130,7 @@ async function loadTags(){
try{
const data = await fetchJSON('/api/tags');
const body = document.getElementById('tags-body');
body.innerHTML = data.models.map(m=>`<tr><td class="model">${m.name}</td><td>${m.digest}</td></tr>`).join('');
body.innerHTML = data.models.map(m=>`<tr><td class="model">${m.id || m.name}</td><td>${m.digest}</td></tr>`).join('');
}catch(e){ console.error(e); }
}