Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adornis
Engine
Merge requests
!696
Michi/chatbot
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Michi/chatbot
michi/chatbot
into
master
Overview
0
Commits
29
Pipelines
10
Changes
3
Merged
Michael Holmes
requested to merge
michi/chatbot
into
master
4 months ago
Overview
0
Commits
29
Pipelines
10
Changes
3
0
0
Merge request reports
Viewing commit
87875f02
Prev
Next
Show latest version
3 files
+
41
−
18
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
87875f02
feat: allow user to fully override the welcome screen
· 87875f02
Elias Künstler
authored
4 months ago
lab/chatbot/client/ChatbotTypes.ts
+
5
−
3
View file @ 87875f02
Edit in single-file editor
Open in Web IDE
Show full file
@@ -5,6 +5,7 @@ export interface ChatbotConfig {
welcomeButtonText
:
string
;
welcomeImageUrl
?:
string
;
welcomeBannerText
:
string
;
welcomeHTML
?:
string
;
tooltipText
?:
string
;
buttonImageUrl
?:
string
;
}
@@ -12,10 +13,11 @@ export interface ChatbotConfig {
// Standard-Konfiguration
export
const
DEFAULT_CONFIG
:
ChatbotConfig
=
{
welcomeTitle
:
'
Willkommen bei WWZ
'
,
welcomeDescription
:
'
Unser virtueller Assistent Ivy steht Ihnen bei Fragen zu unseren Produkten und Dienstleistungen zur Verfügung.
'
,
welcomeDescription
:
'
Unser virtueller Assistent Ivy steht Ihnen bei Fragen zu unseren Produkten und Dienstleistungen zur Verfügung.
'
,
welcomeButtonText
:
'
Mit Ivy chatten
'
,
welcomeImageUrl
:
''
,
welcomeBannerText
:
'
Kreuzchen oben rechts, um nach der Konversation Feedback zu geben.
'
,
tooltipText
:
'
Haben Sie eine Frage? Unser virtueller Assistent hilft Ihnen gerne weiter!
'
,
buttonImageUrl
:
''
};
\ No newline at end of file
buttonImageUrl
:
''
,
};
Loading