fixing headers, using ollama.Responses in rechunk class, fixing reseverd words var usage, fixing embedding output, fixing model naming in frontend

This commit is contained in:
Alpha Nerd 2025-09-21 16:20:36 +02:00
parent f0e181d6b8
commit 43d95fbf38
2 changed files with 71 additions and 51 deletions

View file

@ -346,7 +346,7 @@
const body = document.getElementById("tags-body");
body.innerHTML = data.models
.map((m) => {
let modelCell = `${m.id || m.name}`;
let modelCell = `${m.model}`;
if (m.digest) {
modelCell += `<a href="#" class="delete-link" data-model="${m.name}">delete</a>`;
modelCell += `<a href="#" class="copy-link" data-source="${m.name}">copy</a>`;