This repository was archived by the owner on Dec 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +13
-14
lines changed
components/admin/connectors Expand file tree Collapse file tree 6 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 4
4
5
5
import redis
6
6
from danswer .chat .models import LlmDoc
7
- from danswer .configs .app_configs import (
8
- AIRTABLE_API_TOKEN ,
9
- AIRTABLE_EMPLOYEE_BASE_ID ,
10
- AIRTABLE_EMPLOYEE_TABLE_NAME_OR_ID ,
11
- REDIS_DB_NUMBER ,
12
- REDIS_HOST ,
13
- REDIS_PORT ,
14
- )
7
+ from danswer .configs .app_configs import AIRTABLE_API_TOKEN
8
+ from danswer .configs .app_configs import AIRTABLE_EMPLOYEE_BASE_ID
9
+ from danswer .configs .app_configs import AIRTABLE_EMPLOYEE_TABLE_NAME_OR_ID
10
+ from danswer .configs .app_configs import REDIS_DB_NUMBER
11
+ from danswer .configs .app_configs import REDIS_HOST
12
+ from danswer .configs .app_configs import REDIS_PORT
15
13
from danswer .configs .chat_configs import LANGUAGE_HINT
16
14
from danswer .configs .constants import DocumentSource
17
15
from danswer .db .models import Prompt
18
16
from danswer .llm .answering .models import PromptConfig
19
- from danswer .prompts .chat_prompts import ADDITIONAL_INFO , CITATION_REMINDER
17
+ from danswer .prompts .chat_prompts import ADDITIONAL_INFO
18
+ from danswer .prompts .chat_prompts import CITATION_REMINDER
20
19
from danswer .prompts .constants import CODE_BLOCK_PAT
21
20
from danswer .search .models import InferenceChunk
22
21
from danswer .utils .logger import setup_logger
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ function BackToDanswerButton() {
24
24
< div className = "absolute bottom-0 bg-background w-full flex border-t border-border py-4" >
25
25
< div className = "mx-auto" >
26
26
< Button onClick = { ( ) => router . push ( "/chat" ) } >
27
- Back to { enterpriseSettings ?. application_name || "Danswer Chat " }
27
+ Back to { enterpriseSettings ?. application_name || "Eve AI " }
28
28
</ Button >
29
29
</ div >
30
30
pr
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ const inter = Inter({
25
25
} ) ;
26
26
27
27
export async function generateMetadata ( ) : Promise < Metadata > {
28
- let logoLocation = buildClientUrl ( "/eve- favicon.svg " ) ;
28
+ let logoLocation = buildClientUrl ( "/favicon.ico " ) ;
29
29
let enterpriseSettings : EnterpriseSettings | null = null ;
30
30
if ( SERVER_SIDE_ONLY__PAID_ENTERPRISE_FEATURES_ENABLED ) {
31
31
enterpriseSettings = await ( await fetchEnterpriseSettingsSS ( ) ) . json ( ) ;
32
32
logoLocation =
33
33
enterpriseSettings && enterpriseSettings . use_custom_logo
34
34
? "/api/enterprise-settings/logo"
35
- : buildClientUrl ( "/eve- favicon.svg " ) ;
35
+ : buildClientUrl ( "/favicon.ico " ) ;
36
36
}
37
37
38
38
return {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export function AdminSidebar({ collections }: { collections: Collection[] }) {
81
81
< p className = "ml-1 break-words line-clamp-2 ellipsis leading-none" >
82
82
Back to{ " " }
83
83
{ combinedSettings . enterpriseSettings ?. application_name ||
84
- "Danswer " }
84
+ "Eve AI " }
85
85
</ p >
86
86
</ button >
87
87
</ Link >
@@ -126,7 +126,7 @@ export function AdminSidebar({ collections }: { collections: Collection[] }) {
126
126
key = { "danswerVersion" }
127
127
>
128
128
< h2 className = "text-xs text-text w-52 font-medium pb-2" >
129
- Danswer version: { combinedSettings . webVersion }
129
+ Eve AI version: { combinedSettings . webVersion }
130
130
</ h2 >
131
131
</ div >
132
132
) }
You can’t perform that action at this time.
0 commit comments