-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdomain.yml
More file actions
46 lines (41 loc) · 788 Bytes
/
domain.yml
File metadata and controls
46 lines (41 loc) · 788 Bytes
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
version: "3.1"
intents:
- set_budget
- check_stock_price
- check_currency # Add missing intent
entities:
- amount
- category
- stock_symbol
- currency_from
- currency_to
slots:
amount:
type: float
mappings:
- type: from_entity
entity: amount
category:
type: text
mappings:
- type: from_entity
entity: category
stock_symbol:
type: text
mappings:
- type: from_entity
entity: stock_symbol
currency_from:
type: text
mappings:
- type: from_entity
entity: currency_from
currency_to:
type: text
mappings:
- type: from_entity
entity: currency_to
actions:
- action_set_budget
- action_check_stock_price
- action_check_currency # Add missing action