[]
By default, all dashboards that a user has permission to access will appear in the AI Assistant’s suggestion list. Use this member to specify which dashboards should be displayed in the suggestion list.
[]Example
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
dashboards: ['9a4c4002-d08e-41c5-b16d-4f219314d79d']
}
}
});
dashboard.loadAIAssistant(); []
By default, all dataSources that a user has permission to access will appear in the AI Assistant’s suggestion list. Use this member to specify which dataSources should be displayed in the suggestion list.
[]Example
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
dataSources: ['9a4c4002-d08e-41c5-b16d-4f219314d79d']
}
}
});
dashboard.loadAIAssistant(); string
Specifies the color of the AI Assistant title text in the header.
"" (empty)Example
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
headerTextColor: '#fff'
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the Beta tag in the AI Assistant header.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
hideBetaTag: true,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the Dashboard suggestion in the AI Assistant chat interface.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
hideDashboardTag: true,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the Data Source suggestion in the AI Assistant chat interface.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
hideDatasourceTag: true,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the logo in the AI Assistant header, Welcome message, and each chat conversation.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
hideLogo: true,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the welcome note in the AI Assistant interface.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
hideWelcomeNote: true,
}
}
});
dashboard.loadAIAssistant(); string
Specifies the title displayed in the AI Assistant header and Welcome section.
"" (empty)Example
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
name: 'Embed AI',
}
}
});
dashboard.loadAIAssistant(); number
Defines the number of query suggestions displayed in the AI Assistant. By default, six suggestions are shown, and you can customize this value to display fewer than six, but not more.
6Example
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
aiAssistant: {
queryDisplayLimit: 4,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the Help Link in the AI Assistant header.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
hideIcons: {
helpLink: false,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the History in the AI Assistant header.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
hideIcons: {
history: false,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the New Session in the AI Assistant header.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
hideIcons: {
newSession: false,
}
}
});
dashboard.loadAIAssistant(); boolean
Specifies whether to hide the Usage Analytics in the AI Assistant header.
falseExample
var dashboard = BoldBI.create({
mode: BoldBI.Mode.AIAssistant,
settings: {
hideIcons: {
usageAnalytics: false,
}
}
});
dashboard.loadAIAssistant();