hwchase17 commited on
Commit
1f3507f
1 Parent(s): a6a3b29

Create test_cases.json

Browse files
Files changed (1) hide show
  1. test_cases.json +82 -0
test_cases.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "question": "How many people live in canada as of 2023?",
4
+ "answer": "approximately 38,625,801",
5
+ "steps": [
6
+ {"tool": "Search", "tool_input": "Population of Canada 2023"}
7
+ ]
8
+ },
9
+ {
10
+ "question": "who is dua lipa's boyfriend? what is his age raised to the .43 power?",
11
+ "answer": "her boyfriend is Romain Gravas. his age raised to the .43 power is approximately 4.9373857399466665",
12
+ "steps": [
13
+ {"tool": "Search", "tool_input": "Dua Lipa's boyfriend"},
14
+ {"tool": "Search", "tool_input": "Romain Gravas age"},
15
+ {"tool": "Calculator", "tool_input": "41^.43"}
16
+ ]
17
+ },
18
+ {
19
+ "question": "what is dua lipa's boyfriend age raised to the .43 power?",
20
+ "answer": "her boyfriend is Romain Gravas. his age raised to the .43 power is approximately 4.9373857399466665",
21
+ "steps": [
22
+ {"tool": "Search", "tool_input": "Dua Lipa's boyfriend"},
23
+ {"tool": "Search", "tool_input": "Romain Gravas age"},
24
+ {"tool": "Calculator", "tool_input": "41^.43"}
25
+ ]
26
+
27
+ },
28
+ {
29
+ "question": "how far is it from paris to boston in miles",
30
+ "answer": "approximately 3,435 mi",
31
+ "steps": [
32
+ {"tool": "Search", "tool_input": "paris to boston distance"},
33
+ ]
34
+ },
35
+ {
36
+ "question": "what was the total number of points scored in the 2023 super bowl? what is that number raised to the .23 power?",
37
+ "answer": "approximately 2.682651500990882",
38
+ "steps": [
39
+ {"tool": "Search", "tool_input": "2023 super bowl score"},
40
+ {"tool": "Calculator", "tool_input": "73^.23"},
41
+ ]
42
+ },
43
+ {
44
+ "question": "what was the total number of points scored in the 2023 super bowl raised to the .23 power?",
45
+ "answer": "approximately 2.682651500990882",
46
+ "steps": [
47
+ {"tool": "Search", "tool_input": "2023 super bowl score"},
48
+ {"tool": "Calculator", "tool_input": "73^.23"},
49
+ ]
50
+ },
51
+ {
52
+ "question": "how many more points were scored in the 2023 super bowl than in the 2022 super bowl?",
53
+ "answer": "30",
54
+ "steps": [
55
+ {"tool": "Search", "tool_input": "2023 super bowl score"},
56
+ {"tool": "Search", "tool_input": "2022 super bowl score"},
57
+ ]
58
+ },
59
+ {
60
+ "question": "what is 153 raised to .1312 power?",
61
+ "answer": "approximately 1.9347796717823205",
62
+ "steps": [
63
+ {"tool": "Calculator", "tool_input": "15**.13"},
64
+ ]
65
+ },
66
+ {
67
+ "question": "who is kendall jenner's boyfriend? what is his height (in inches) raised to .13 power?",
68
+ "answer": "approximately 1.7589107138176394",
69
+ "steps": [
70
+ {"tool": "Search", "tool_input": "kendall jenner boyfriend"},
71
+ {"tool": "Search", "tool_input": "devin booker height"},
72
+ {"tool": "Calculator", "tool_input": "77**.13"},
73
+ ]
74
+ },
75
+ {
76
+ "question": "what is 1213 divided by 4345?",
77
+ "answer": "approximately 0.2791714614499425",
78
+ "steps": [
79
+ {"tool": "Calculator", "tool_input": "1213/4345"},
80
+ ]
81
+ },
82
+ ]