prasanth345 commited on
Commit
7cad251
·
verified ·
1 Parent(s): dc26720

Create intents.json

Browse files
Files changed (1) hide show
  1. intents.json +19 -0
intents.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "intents": [
3
+ {
4
+ "tag": "greeting",
5
+ "patterns": ["hello", "hi", "good morning", "good evening"],
6
+ "responses": ["Hello! How can I assist you with your hotel booking today?"]
7
+ },
8
+ {
9
+ "tag": "book_room",
10
+ "patterns": ["I want to book a room", "Can I book a hotel room?", "Room booking"],
11
+ "responses": ["Sure! What type of room would you like to book?"]
12
+ },
13
+ {
14
+ "tag": "thanks",
15
+ "patterns": ["thank you", "thanks", "that's all"],
16
+ "responses": ["You're welcome! Have a great day!"]
17
+ }
18
+ ]
19
+ }