forked from RevealBi/Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinkeep.config.ts
More file actions
40 lines (35 loc) · 1.25 KB
/
inkeep.config.ts
File metadata and controls
40 lines (35 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { InkeepAIChatSettings, InkeepBaseSettings, InkeepChatButtonProps, InkeepSearchBarProps, InkeepSearchSettings } from "@inkeep/cxkit-docusaurus";
const baseSettings: InkeepBaseSettings = {
apiKey: "d3c8d5f69fbc363dfb78a55ff2b3a6b2e09a92a012d41396",
organizationDisplayName: "Reveal",
primaryBrandColor: "#ec417a",
}
const aiChatSettings: InkeepAIChatSettings = {
placeholder: "Type your question...",
chatSubjectName: "Reveal",
aiAssistantName: "Reveal AI",
aiAssistantAvatar: "https://help.revealbi.io/img/logo.png",
exampleQuestions: [
"How to choose a visualization type?",
"What are dot maps?",
"How to use dashboard filters?",
],
}
const searchSettings: InkeepSearchSettings = {
placeholder: "Search",
}
export const searchBarSettings: InkeepSearchBarProps = {
baseSettings: baseSettings,
searchSettings: searchSettings,
aiChatSettings: aiChatSettings,
canToggleView: true,
forceDefaultView: true,
askAILabel: "Ask Reveal AI",
};
export const chatButtonSettings: InkeepChatButtonProps = {
baseSettings: baseSettings,
searchSettings: searchSettings,
aiChatSettings: aiChatSettings,
label: "Chat with Reveal AI",
askAILabel: "Ask Reveal AI",
};