Spaces:
Sleeping
Sleeping
Create knowledge_base.json
Browse files- knowledge_base.json +51 -0
knowledge_base.json
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"questions": [
|
3 |
+
{
|
4 |
+
"question": "hi",
|
5 |
+
"response": "Hi how are you?"
|
6 |
+
},
|
7 |
+
{
|
8 |
+
"question": "what is the capital of england?",
|
9 |
+
"response": "London"
|
10 |
+
},
|
11 |
+
{
|
12 |
+
"question": "what is the capital of france?",
|
13 |
+
"response": "Paris"
|
14 |
+
},
|
15 |
+
{
|
16 |
+
"question": "what is 9+10?",
|
17 |
+
"response": "19"
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"question": "what is the capital of the united states?",
|
21 |
+
"response": "Washington D.C."
|
22 |
+
},
|
23 |
+
{
|
24 |
+
"question": "what is 9x9?",
|
25 |
+
"response": "81"
|
26 |
+
},
|
27 |
+
{
|
28 |
+
"question": "what language do most data scientists know?",
|
29 |
+
"response": "SQL"
|
30 |
+
},
|
31 |
+
{
|
32 |
+
"question": "hello",
|
33 |
+
"response": "hi"
|
34 |
+
},
|
35 |
+
{
|
36 |
+
"question": "how are you?",
|
37 |
+
"response": "i'm fine!how are you doing?"
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"question": "how are you ",
|
41 |
+
"response": "I'm fine. how are you doing?"
|
42 |
+
},
|
43 |
+
{
|
44 |
+
"question": "how are you",
|
45 |
+
"response": "I'm fine,how are you doing?"
|
46 |
+
}
|
47 |
+
],
|
48 |
+
"hi": [
|
49 |
+
"Hello there! How can I help you today?"
|
50 |
+
]
|
51 |
+
}
|