-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain.yml
60 lines (60 loc) · 1.21 KB
/
domain.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: '2.0'
config:
store_entities_as_slots: false
session_config:
session_expiration_time: 120
carry_over_slots_to_new_session: false
intents:
- greet:
use_entities: []
- goodbye:
use_entities: []
- affirm:
use_entities: []
- deny:
use_entities: []
- mood_great:
use_entities: []
- mood_unhappy:
use_entities: []
- bot_challenge:
use_entities: []
- most_popular_song:
use_entities: []
- most_popular_song_of_artist:
use_entities:
- artist
- songs_of_artist:
use_entities:
- artist
- song
- match_lyrics:
use_entities:
- song
entities:
- artist
- song
slots: {}
responses:
utter_greet:
- text: හායි, ඔබට කොහොමද?
# utter_cheer_up:
# - image: https://i.imgur.com/nGF1K8f.jpg
# text: 'Here is something to cheer you up:'
# utter_did_that_help:
# - text: Did that help you?
# utter_happy:
# - text: Great, carry on!
utter_goodbye:
- text: බායි
utter_iamabot:
- text: මම බොට් කෙනෙක් 🤖
actions:
- action_get_most_popular_song
- action_get_most_popular_song_of_artist
- action_songs_of_artist
- action_match_lyrics
- action_suggest_happy_song
- action_suggest_sad_song
forms: {}
e2e_actions: []