Skip to content

Commit

Permalink
Making a few UI tweaks
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Co <alex.tuan@mindvalley.com>
  • Loading branch information
onimsha committed Nov 25, 2024
1 parent dd37b07 commit bca70e4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
7 changes: 1 addition & 6 deletions backend/danswer/chat/personas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 10 additions & 0 deletions web/public/eve-favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ const inter = Inter({
});

export async function generateMetadata(): Promise<Metadata> {
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 {
Expand Down

0 comments on commit bca70e4

Please sign in to comment.