diff --git a/src/routes/(app)/+page.svelte b/src/routes/(app)/+page.svelte
index 581db7c0..e345e2be 100644
--- a/src/routes/(app)/+page.svelte
+++ b/src/routes/(app)/+page.svelte
@@ -14,6 +14,7 @@
chats,
chatId,
config,
+ WEBUI_NAME,
tags as _tags
} from '$lib/stores';
import { copyToClipboard, splitStream } from '$lib/utils';
@@ -38,7 +39,6 @@
import { RAGTemplate } from '$lib/utils/rag';
import { LITELLM_API_BASE_URL, OPENAI_API_BASE_URL } from '$lib/constants';
import { WEBUI_BASE_URL } from '$lib/constants';
-
let stopResponseFlag = false;
let autoScroll = true;
let processing = '';
@@ -809,6 +809,14 @@
};
+
+
+ {title
+ ? `${title.length > 30 ? `${title.slice(0, 30)}...` : title} | ${$WEBUI_NAME}`
+ : `${$WEBUI_NAME}`}
+
+
+
0} {initNewChat} {tags} {addTag} {deleteTag} />
diff --git a/src/routes/(app)/admin/+page.svelte b/src/routes/(app)/admin/+page.svelte
index b1169709..32234b03 100644
--- a/src/routes/(app)/admin/+page.svelte
+++ b/src/routes/(app)/admin/+page.svelte
@@ -1,6 +1,6 @@
+
+
+ {`Admin Panel | ${$WEBUI_NAME}`}
+
+
+
{#key selectedUser}
scrollToBottom(), 0);
const chatInput = document.getElementById('chat-textarea');
chatInput?.focus();
} else {
@@ -823,6 +825,14 @@
});
+
+
+ {title
+ ? `${title.length > 30 ? `${title.slice(0, 30)}...` : title} | ${$WEBUI_NAME}`
+ : `${$WEBUI_NAME}`}
+
+
+
{#if loaded}
+
+
+ {`Documents | ${$WEBUI_NAME}`}
+
+
+
{#if dragged}
+
+
+ {`Modelfiles | ${$WEBUI_NAME}`}
+
+
+
diff --git a/src/routes/(app)/prompts/+page.svelte b/src/routes/(app)/prompts/+page.svelte
index 784c8693..6f0bc0e1 100644
--- a/src/routes/(app)/prompts/+page.svelte
+++ b/src/routes/(app)/prompts/+page.svelte
@@ -4,7 +4,7 @@
const { saveAs } = fileSaver;
import { onMount } from 'svelte';
- import { prompts } from '$lib/stores';
+ import { WEBUI_NAME, prompts } from '$lib/stores';
import { createNewPrompt, deletePromptByCommand, getPrompts } from '$lib/apis/prompts';
import { error } from '@sveltejs/kit';
import { goto } from '$app/navigation';
@@ -36,6 +36,12 @@
};
+
+
+ {`Prompts | ${$WEBUI_NAME}`}
+
+
+
diff --git a/src/routes/auth/+page.svelte b/src/routes/auth/+page.svelte
index 30c5a93e..a2237794 100644
--- a/src/routes/auth/+page.svelte
+++ b/src/routes/auth/+page.svelte
@@ -57,6 +57,12 @@
});
+
+
+ {`${$WEBUI_NAME}`}
+
+
+
{#if loaded}