From bca70e45060c369b442a0f50870596eae2ed407c Mon Sep 17 00:00:00 2001 From: Alex Co Date: Mon, 25 Nov 2024 12:31:12 +0800 Subject: [PATCH] Making a few UI tweaks Signed-off-by: Alex Co --- backend/danswer/chat/personas.yaml | 7 +------ web/public/eve-favicon.svg | 10 ++++++++++ web/src/app/layout.tsx | 4 ++-- 3 files changed, 13 insertions(+), 8 deletions(-) create mode 100644 web/public/eve-favicon.svg diff --git a/backend/danswer/chat/personas.yaml b/backend/danswer/chat/personas.yaml index f15b304c178..d76b13fb10b 100644 --- a/backend/danswer/chat/personas.yaml +++ b/backend/danswer/chat/personas.yaml @@ -7,12 +7,7 @@ personas: - id: 0 name: "Eve AI" description: > - EVE AI Assistant is your personal work companion at Mindvalley. Designed to streamline your workday, - EVE provides quick answers using vast internal documents and knowladge through connected sources and information. - From HR policies and IT support to technical solutions and product details, EVE offers comprehensive assistance. - Whether you need company guidelines, troubleshooting tips, how-to guides, or insights into the organization’s activities, - EVE provides accurate and up-to-date information to help you focus on achieving your goals and contributing effectively - to the Mindvalley team. + EVE AI Assistant is your personal work companion at Mindvalley, designed to streamline your workday. It provides quick answers using vast internal documents and connected sources. EVE offers assistance with almost anything, delivering accurate and up-to-date information to help you achieve your goals fast. # Default Prompt objects attached to the persona, see prompts.yaml prompts: - "Answer-Question" diff --git a/web/public/eve-favicon.svg b/web/public/eve-favicon.svg new file mode 100644 index 00000000000..6b42e5a2834 --- /dev/null +++ b/web/public/eve-favicon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/web/src/app/layout.tsx b/web/src/app/layout.tsx index f69381bd504..0bbbe69d0f4 100644 --- a/web/src/app/layout.tsx +++ b/web/src/app/layout.tsx @@ -25,14 +25,14 @@ const inter = Inter({ }); export async function generateMetadata(): Promise { - let logoLocation = buildClientUrl("/danswer.ico"); + let logoLocation = buildClientUrl("/eve-favicon.svg"); let enterpriseSettings: EnterpriseSettings | null = null; if (SERVER_SIDE_ONLY__PAID_ENTERPRISE_FEATURES_ENABLED) { enterpriseSettings = await (await fetchEnterpriseSettingsSS()).json(); logoLocation = enterpriseSettings && enterpriseSettings.use_custom_logo ? "/api/enterprise-settings/logo" - : buildClientUrl("/danswer.ico"); + : buildClientUrl("/eve-favicon.svg"); } return {