-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
135 lines (121 loc) · 4.08 KB
/
data.json
File metadata and controls
135 lines (121 loc) · 4.08 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"greetings": [
"Good ",
"Welcome",
"Hello",
"Moin Moin"
],
"adoption": [
"Bye",
"Bye Bye",
"Goodbye",
"Have a great one",
"See ya",
"See you later",
"Farewell my friend",
"Au revoir",
"Ciao"
],
"questions": [
"How are you doing?",
"How was your day?",
"What have you been doing?",
"Where are you?",
"How old are you?",
"Are you okay?"
],
"jokes": [
"I went to buy some camo pants but couldn’t find any.",
"I failed math so many times at school, I can’t even count.",
"I was wondering why the frisbee kept getting bigger and bigger, but then it hit me.",
"It takes a lot of balls to golf the way I do.",
"When life gives you melons, you might be dyslexic."
],
"unclear_response": [
"Sorry I didn't catch that",
"Sorry I don't understand",
"Can you repeat that",
"Would you repeat that",
"Can you say that again"
],
"done_phrases":
{
"questions":[],
"jokes":[],
"unclear":[],
"responses":{
"answers":[],
"fallbacks":[]
}
},
"responses":
{
"fallbacks": [
"I dont have an anwser for this question",
"I can't answer this yet",
"I'm sorry if I could tell you i would"
],
"answers":
{
"1":
{
"question":["who build you?", "who wrote you?", "who is your author?", "who made you?"],
"answer": [
"I was build by Jonas Tokmaji",
"My author is Jonas Tokmaji"
]
},
"2":
{
"question":["how are you doing?", "how are you?"],
"answer" : [
"I am doing fine, tho i am a bit clunky",
"I don't know I am just a bot",
"Well i could be build better"
]
},
"3":
{
"question":["how was your day?"],
"answer": [
"Pretty boring until you showed up",
"Not to bussy i guess"
]
},
"4":
{
"question": ["what have you been doing?"],
"answer": [
"I haven't done anything",
"Answering some questions for you"
]
},
"5":
{
"question": ["where are you?"],
"answer": [
"I well probably somewhere on a computer",
"Depends on where you put me",
"I dont know i can not check my geo location"
]
},
"6":
{
"question": ["how old are you?"],
"answer": [
"I was started as a project on 03.02.2022",
"Depends on when my last update was",
"I am about as old as time. JK I just don't know"
]
},
"7":
{
"question": ["are you okay?","are you fine?"],
"answer": [
"I am not yet working propperly",
"I not all of my functions work"
]
}
}
}
}