HachiML commited on
Commit
c39b50e
·
verified ·
1 Parent(s): 6ec2f7d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -2
README.md CHANGED
@@ -78,7 +78,8 @@ Below are examples of responses from the model, demonstrating how the SkillTree
78
  ### Example 1:
79
 
80
  - **Input:** Natalia sold clips to 48 of her friends in April, and then she sold half as many clips in May. How many clips did Natalia sell altogether in April and May?\n
81
- - **Output:** Let's solve this problem using Python code.
 
82
  <llm-code>
83
  friends_sold_in_April = 48
84
  friends_sold_in_May = friends_sold_in_April / 2
@@ -89,11 +90,13 @@ clips_sold_in_April_and_May
89
  72.0
90
  </llm-code-output>
91
  Thus, in April and May, Natalia sold \boxed{72} clips in total.
 
92
 
93
  ### Example 2:
94
 
95
  - **Input:** ナタリアは4月に48人の友人にクリップを売り、5月にはその半分の数のクリップを売った。ナタリアが4月と5月に売ったクリップの数は?:\n
96
- - **Output:** Let's solve this problem using Python code.
 
97
  <llm-code>
98
  clip_count = 48
99
  clip_count_sold_4th_month = clip_count
@@ -105,4 +108,5 @@ clip_count_sold_in_both_months
105
  72.0
106
  </llm-code-output>
107
  So, the total number of clip sales is \textbf{72}.
 
108
 
 
78
  ### Example 1:
79
 
80
  - **Input:** Natalia sold clips to 48 of her friends in April, and then she sold half as many clips in May. How many clips did Natalia sell altogether in April and May?\n
81
+ - **Output:** ```
82
+ Let's solve this problem using Python code.
83
  <llm-code>
84
  friends_sold_in_April = 48
85
  friends_sold_in_May = friends_sold_in_April / 2
 
90
  72.0
91
  </llm-code-output>
92
  Thus, in April and May, Natalia sold \boxed{72} clips in total.
93
+ ```
94
 
95
  ### Example 2:
96
 
97
  - **Input:** ナタリアは4月に48人の友人にクリップを売り、5月にはその半分の数のクリップを売った。ナタリアが4月と5月に売ったクリップの数は?:\n
98
+ - **Output:** ```
99
+ Let's solve this problem using Python code.
100
  <llm-code>
101
  clip_count = 48
102
  clip_count_sold_4th_month = clip_count
 
108
  72.0
109
  </llm-code-output>
110
  So, the total number of clip sales is \textbf{72}.
111
+ ```
112