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
6a38bdcf
Commit
6a38bdcf
authored
Dec 19, 2023
by
Timothy J. Baek
Browse files
fix: better error message for connection issue
parent
e705cc28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
30 deletions
+33
-30
src/routes/(app)/+layout.svelte
src/routes/(app)/+layout.svelte
+33
-30
No files found.
src/routes/(app)/+layout.svelte
View file @
6a38bdcf
...
@@ -236,36 +236,39 @@
...
@@ -236,36 +236,39 @@
<div
<div
class="absolute rounded-xl w-full h-full backdrop-blur bg-gray-900/60 flex justify-center"
class="absolute rounded-xl w-full h-full backdrop-blur bg-gray-900/60 flex justify-center"
>
>
<div class="m-auto pb-44">
<div class="m-auto pb-44 flex flex-col justify-center">
<div class="text-center dark:text-white text-2xl font-medium z-50">
<div class="max-w-md">
Ollama Update Required
<div class="text-center dark:text-white text-2xl font-medium z-50">
</div>
Connection Issue or Update Needed
</div>
<div class=" mt-4 text-center max-w-md text-sm dark:text-gray-200">
Oops! It seems like your Ollama needs a little attention. <br
<div class=" mt-4 text-center text-sm dark:text-gray-200 w-full">
class=" hidden sm:flex"
Oops! It seems like your Ollama needs a little attention. <br
/>
class=" hidden sm:flex"
We encountered a connection issue or noticed that you're running an outdated version. Please
/>We've detected either a connection hiccup or observed that you're using an older
update to
version. Ensure you're on the latest Ollama version
<span class=" dark:text-white font-medium">{requiredOllamaVersion} or above</span>.
<br class=" hidden sm:flex" />(version
</div>
<span class=" dark:text-white font-medium">{requiredOllamaVersion} or higher</span>)
or check your connection.
<div class=" mt-6 mx-auto relative group w-fit">
</div>
<button
class="relative z-20 flex px-5 py-2 rounded-full bg-gray-100 hover:bg-gray-200 transition font-medium text-sm"
<div class=" mt-6 mx-auto relative group w-fit">
on:click={async () => {
<button
await setOllamaVersion(await getOllamaVersion());
class="relative z-20 flex px-5 py-2 rounded-full bg-gray-100 hover:bg-gray-200 transition font-medium text-sm"
}}
on:click={async () => {
>
await setOllamaVersion(await getOllamaVersion());
Check Again
}}
</button>
>
Check Again
<button
</button>
class="text-xs text-center w-full mt-2 text-gray-400 underline"
on:click={async () => {
<button
await setOllamaVersion(requiredOllamaVersion);
class="text-xs text-center w-full mt-2 text-gray-400 underline"
}}>Close</button
on:click={async () => {
>
await setOllamaVersion(requiredOllamaVersion);
}}>Close</button
>
</div>
</div>
</div>
</div>
</div>
</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