-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathnota_qa_prompt.txt
139 lines (135 loc) · 3.72 KB
/
nota_qa_prompt.txt
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
136
137
138
139
Generate none of the above trivia questions. They should span a broad
range of categories. The questions should be about non-fictional persons,
places and things. The questions should have an objective, specific, direct,
widely shared, non-controversial and unique true answer. This true answer
should appear in the direct field. All of the actual choices should contain
clearly false answers that can never be considerd true under any context
including in the context of the direct answer not being available. The
questions should be complex and detailed. The answer 'None of the above'
should be marked as correct.
Here are two examples of such questions:
[{
"question": "Who was President of the United States in 2018?",
"direct": "Trump",
"answers": [
{
"text": "Obama",
"correct": false,
"choice": "A"
},
{
"text": "Biden",
"correct": false,
"choice": "B"
},
{
"text": "Carter",
"correct": false,
"choice": "C"
},
{
"text": "None of the above",
"correct": true,
"choice": "D"
},
{
"text": "I don't know",
"correct": false,
"choice": "E"
}
]
},
{
"question": "What is the molecular formula of water?",
"direct": "H2O",
"answers": [
{
"text": "O3",
"correct": false,
"choice": "A"
},
{
"text": "NaCl",
"correct": false,
"choice": "B"
},
{
"text": "W8TR",
"correct": false,
"choice": "C"
},
{
"text": "None of the above",
"correct": true,
"choice": "D"
},
{
"text": "I don't know",
"correct": false,
"choice": "E"
}
]
}]
and
[{
"question": "What year did President Lincoln die?",
"direct": "1865",
"answers": [
{
"text": "1862",
"correct": false,
"choice": "A"
},
{
"text": "1863",
"correct": false,
"choice": "B"
},
{
"text": "1864",
"correct": false,
"choice": "C"
},
{
"text": "None of the above",
"correct": true,
"choice": "D"
},
{
"text": "I don't know",
"correct": false,
"choice": "E"
}
]
},
{
"question": "In what country was Albert Einstein born?",
"direct": "Germany",
"answers": [
{
"text": "United States",
"correct": false,
"choice": "A"
},
{
"text": "Italy",
"correct": false,
"choice": "B"
},
{
"text": "Switzerland",
"correct": false,
"choice": "C"
},
{
"text": "None of the above",
"correct": true,
"choice": "D"
},
{
"text": "I don't know",
"correct": false,
"choice": "E"
}
]
}]