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:
parent
f0e181d6b8
commit
43d95fbf38
2 changed files with 71 additions and 51 deletions
|
|
@ -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>`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue