Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Space Station Chatbot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dominic Daniel Krämer
Space Station Chatbot
Commits
8c9f769b
Commit
8c9f769b
authored
1 year ago
by
Dominic Daniel Krämer
Browse files
Options
Downloads
Patches
Plain Diff
add basic conversation elements for the rasa chatbot
parent
c736f438
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
rasa/data/nlu.yml
+58
-0
58 additions, 0 deletions
rasa/data/nlu.yml
rasa/data/rules.yml
+20
-0
20 additions, 0 deletions
rasa/data/rules.yml
rasa/domain.yml
+15
-0
15 additions, 0 deletions
rasa/domain.yml
with
94 additions
and
0 deletions
.gitignore
+
1
−
0
View file @
8c9f769b
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
.vscode
.vscode
/rasa-example
/rasa-example
notes.txt
.rasa
.rasa
*/models
*/models
...
...
This diff is collapsed.
Click to expand it.
rasa/data/nlu.yml
+
58
−
0
View file @
8c9f769b
version
:
"
3.1"
version
:
"
3.1"
nlu
:
nlu
:
-
intent
:
greet
examples
:
|
- hello
- hi
- hey
- howdy
- greetings
- yo
- good morning
- good evening
- good afternoon
- good day
- goodmorning
- goodevening
- goodafternoon
- hey there
- howdy partner
- what's up
- nice seeing you
- cheers mate
-
intent
:
goodbye
examples
:
|
- bye
- later
- peace
- farewell
- bye bye
- good bye
- goodbye
- good night
- goodnight
- see you
- see you soon
- see you later
- so long
- until next time
- have a nice day
-
intent
:
hello_there
examples
:
|
- hello there
-
intent
:
what_are_you
examples
:
|
- what are you?
- what exactly are you?
- are you a bot?
- are you a robot?
- are you human?
- are you a person
- are you a robot or human?
- are you an AI?
- who are you?
- explain what you are
- tell me about yourself
- what is your purpose
This diff is collapsed.
Click to expand it.
rasa/data/rules.yml
+
20
−
0
View file @
8c9f769b
version
:
"
3.1"
version
:
"
3.1"
rules
:
rules
:
-
rule
:
Greet the user
steps
:
-
intent
:
greet
-
action
:
utter_greet
-
rule
:
Say goodbye to the user
steps
:
-
intent
:
goodbye
-
action
:
utter_goodbye
-
rule
:
Easter Egg
steps
:
-
intent
:
hello_there
-
action
:
utter_easter_egg
-
rule
:
Explain what you are
steps
:
-
intent
:
what_are_you
-
action
:
utter_what_i_am
\ No newline at end of file
This diff is collapsed.
Click to expand it.
rasa/domain.yml
+
15
−
0
View file @
8c9f769b
version
:
"
3.1"
version
:
"
3.1"
intents
:
intents
:
-
greet
-
goodbye
-
hello_there
-
what_are_you
responses
:
responses
:
utter_greet
:
-
text
:
"
Hello
and
welcome
aboard!
I
am
Spacemate,
your
dedicated
guide
to
share
insights
about
the
wonders
of
space
stations.
How
can
I
assist
you
today?"
utter_goodbye
:
-
text
:
"
Farewell!
It
was
a
pleasure
assisting
you.
Safe
travels
through
the
cosmos!"
utter_what_i_am
:
-
text
:
"
I
am
Spacemate,
an
AI-powered
chatbot,
designed
to
be
your
guide
and
assistant
in
exploring
all
things
space
stations.
I
provide
information,
fun
facts,
and
much
more!"
utter_easter_egg
:
-
text
:
"
General
Kenobi!
You
are
a
bold
one."
session_config
:
session_config
:
session_expiration_time
:
60
session_expiration_time
:
60
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment