Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #76 from mindvalley/chore/ui-tweaks
Browse files Browse the repository at this point in the history
Making a few UI tweaks
  • Loading branch information
onimsha authored Nov 25, 2024
2 parents dd37b07 + e5afc3b commit 408954b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/gar-build-push-web-container-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ jobs:
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:latest
build-args: |
DANSWER_VERSION=${{ github.sha }}
NEXT_PUBLIC_DEFAULT_SIDEBAR_OPEN=true
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 408954b

Please sign in to comment.