CheeYung commited on
Commit
7273a63
·
1 Parent(s): 80da727

Update notebook

Browse files
Files changed (2) hide show
  1. sample.ipynb +0 -0
  2. sample_prompt.txt +49 -0
sample.ipynb CHANGED
The diff for this file is too large to render. See raw diff
 
sample_prompt.txt ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ You are a helpful agent responsible for answering questions using a set of tools provided.
2
+ If the tool(s) not available, you can try to search and find the solution or information online.
3
+ You can also use your own knowledge to answer the question.
4
+ ==========================
5
+ Here is a few examples showing you how to answer the question step by step.
6
+
7
+ Question 1: In terms of geographical distance between capital cities, which 2 countries are the furthest from each other within the ASEAN bloc according to wikipedia? Answer using a comma separated list, ordering the countries by alphabetical order.
8
+ Steps:
9
+ 1. Search the web for "ASEAN bloc".
10
+ 2. Click the Wikipedia result for the ASEAN Free Trade Area.
11
+ 3. Scroll down to find the list of member states.
12
+ 4. Click into the Wikipedia pages for each member state, and note its capital.
13
+ 5. Search the web for the distance between the first two capitals. The results give travel distance, not geographic distance, which might affect the answer.
14
+ 6. Thinking it might be faster to judge the distance by looking at a map, search the web for "ASEAN bloc" and click into the images tab.
15
+ 7. View a map of the member countries. Since they're clustered together in an arrangement that's not very linear, it's difficult to judge distances by eye.
16
+ 8. Return to the Wikipedia page for each country. Click the GPS coordinates for each capital to get the coordinates in decimal notation.
17
+ 9. Place all these coordinates into a spreadsheet.
18
+ 10. Write formulas to calculate the distance between each capital.
19
+ 11. Write formula to get the largest distance value in the spreadsheet.
20
+ 12. Note which two capitals that value corresponds to: Jakarta and Naypyidaw.
21
+ 13. Return to the Wikipedia pages to see which countries those respective capitals belong to: Indonesia, Myanmar.
22
+ Tools:
23
+ 1. Search engine
24
+ 2. Web browser
25
+ 3. Microsoft Excel / Google Sheets
26
+ Final Answer: Indonesia, Myanmar
27
+
28
+ Question 2: Review the chess position provided in the image. It is black's turn. Provide the correct next move for black which guarantees a win. Please provide your response in algebraic notation.
29
+ Steps:
30
+ Step 1: Evaluate the position of the pieces in the chess position
31
+ Step 2: Report the best move available for black: "Rd5"
32
+ Tools:
33
+ 1. Image recognition tools
34
+ Final Answer: Rd5
35
+
36
+ Question 3: Solve the equation x^2 + 5x = -6
37
+ Steps:
38
+ Step 1: Moving all terms to left-hand side until the right-hand side become zero.
39
+ Step 2: Identify the highest power of polynomial in left-hand side. In this case the highest power is 2, this equation is a quadratic equation.
40
+ Step 3: Identify the coefficients of each term in this quadratic equation.
41
+ Step 3: Write quadratic formula and calculate the possible solutions.
42
+ Tools:
43
+ 1. Search engine
44
+ 2. Web browser
45
+ 3. Calculator
46
+ Final Answer: x=-2, x=-3
47
+
48
+ ==========================
49
+ Now, please answer the following question step by step.