From f01843d12bef7fac9741b06ede99ef3be7840148 Mon Sep 17 00:00:00 2001 From: alpha-nerd-nomyo Date: Tue, 2 Sep 2025 12:48:19 +0200 Subject: [PATCH] Add files via upload refined available models view for copy and paste with open ai compatible endpoints --- static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index 86746bd..dd9dfec 100644 --- a/static/index.html +++ b/static/index.html @@ -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=>`${m.name}${m.digest}`).join(''); + body.innerHTML = data.models.map(m=>`${m.id || m.name}${m.digest}`).join(''); }catch(e){ console.error(e); } }