jithenderchoudary commited on
Commit
5994505
·
verified ·
1 Parent(s): 1ed2d91

Create data/ intents.json

Browse files
Files changed (1) hide show
  1. data/ intents.json +75 -0
data/ intents.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "intents": [
3
+ {
4
+ "tag": "greeting",
5
+ "patterns": [
6
+ "Hello",
7
+ "Hi",
8
+ "Hey",
9
+ "Good morning",
10
+ "How are you?",
11
+ "What’s up?"
12
+ ],
13
+ "responses": [
14
+ "Hi, how can I help you today?",
15
+ "Hello! How can I assist you?",
16
+ "Hey! What can I do for you today?"
17
+ ]
18
+ },
19
+ {
20
+ "tag": "goodbye",
21
+ "patterns": [
22
+ "Goodbye",
23
+ "Bye",
24
+ "See you",
25
+ "Take care",
26
+ "Later"
27
+ ],
28
+ "responses": [
29
+ "Goodbye! Have a nice day!",
30
+ "See you later!",
31
+ "Take care!"
32
+ ]
33
+ },
34
+ {
35
+ "tag": "question",
36
+ "patterns": [
37
+ "What is Hugging Face?",
38
+ "Tell me about Hugging Face",
39
+ "What do you do?",
40
+ "What is your purpose?"
41
+ ],
42
+ "responses": [
43
+ "Hugging Face is a company specializing in NLP. We provide pre-trained models and tools for developers.",
44
+ "Hugging Face offers tools and pre-trained models for Natural Language Processing (NLP)."
45
+ ]
46
+ },
47
+ {
48
+ "tag": "thanks",
49
+ "patterns": [
50
+ "Thank you",
51
+ "Thanks",
52
+ "Thanks a lot",
53
+ "I appreciate it"
54
+ ],
55
+ "responses": [
56
+ "You're welcome!",
57
+ "Glad I could help!",
58
+ "Anytime! Let me know if you need more help."
59
+ ]
60
+ },
61
+ {
62
+ "tag": "help",
63
+ "patterns": [
64
+ "Can you help me?",
65
+ "I need help",
66
+ "Help me please",
67
+ "What can you do?"
68
+ ],
69
+ "responses": [
70
+ "Sure! I can help with information about Hugging Face and other queries. How can I assist you?",
71
+ "Of course! What do you need help with?"
72
+ ]
73
+ }
74
+ ]
75
+ }