Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
84f0cb41
Commit
84f0cb41
authored
Jan 06, 2024
by
Timothy J. Baek
Browse files
fix: restore status toast
parent
3853261b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
22 deletions
+28
-22
src/lib/components/chat/SettingsModal.svelte
src/lib/components/chat/SettingsModal.svelte
+28
-22
No files found.
src/lib/components/chat/SettingsModal.svelte
View file @
84f0cb41
...
@@ -295,11 +295,16 @@
...
@@ -295,11 +295,16 @@
digest: data.digest
digest: data.digest
};
};
}
}
} else {
toast.success(data.status);
}
}
}
}
}
}
} catch (error) {
} catch (error) {
console.log(error);
console.log(error);
if (typeof error !== 'string') {
error = error.message;
}
opts.callback({ success: false, error, modelName: opts.modelName });
opts.callback({ success: false, error, modelName: opts.modelName });
}
}
}
}
...
@@ -330,12 +335,11 @@
...
@@ -330,12 +335,11 @@
if (!data.success) {
if (!data.success) {
toast.error(data.error);
toast.error(data.error);
return;
} else {
}
toast.success(`Model ${modelName} was successfully downloaded`);
toast.success(`Model ${modelName} was successfully downloaded`);
models.set(await getModels());
models.set(await getModels());
}
}
}
);
);
modelTag = '';
modelTag = '';
...
@@ -1155,18 +1159,18 @@
...
@@ -1155,18 +1159,18 @@
</button>
</button>
</div>
</div>
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
<div class="mt-2
mb-1
text-xs text-gray-400 dark:text-gray-500">
To access the available model names for downloading, <a
To access the available model names for downloading, <a
class=" text-gray-500 dark:text-gray-300 font-medium"
class=" text-gray-500 dark:text-gray-300 font-medium"
href="https://ollama.ai/library"
href="https://ollama.ai/library"
target="_blank">click here.</a
target="_blank">click here.</a
>
>
</div>
</div>
</div>
{#if Object.keys(modelDownloadStatus).length > 0}
{#if Object.keys(modelDownloadStatus).length > 0}
{#each Object.entries(modelDownloadStatus) as [modelName, payload]}
{#each Object.entries(modelDownloadStatus) as [modelName, payload]}
<div class="flex flex-col">
<div class="flex flex-col">
<div class="font-medium mb-
0.5
">{modelName}</div>
<div class="font-medium mb-
1
">{modelName}</div>
<div class="">
<div class="">
<div
<div
class="dark:bg-gray-600 bg-gray-500 text-xs font-medium text-gray-100 text-center p-0.5 leading-none rounded-full"
class="dark:bg-gray-600 bg-gray-500 text-xs font-medium text-gray-100 text-center p-0.5 leading-none rounded-full"
...
@@ -1181,6 +1185,8 @@
...
@@ -1181,6 +1185,8 @@
</div>
</div>
{/each}
{/each}
{/if}
{/if}
</div>
<hr class=" dark:border-gray-700" />
<hr class=" dark:border-gray-700" />
<div>
<div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment