mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-05-01 17:45:24 +00:00
added reasoning gtm gcd
This commit is contained in:
parent
3f731029dd
commit
e00fc81ba8
1 changed files with 3 additions and 1 deletions
|
|
@ -57,7 +57,9 @@ class GCDDataset(ProceduralDataset):
|
|||
numbers_str = ", ".join(str(n) for n in numbers)
|
||||
|
||||
return {
|
||||
"question": f"Find the Greatest Common Divisor (GCD) of these numbers: {numbers_str}",
|
||||
"question": f"""Find the Greatest Common Divisor (GCD) of these numbers: {numbers_str}. Give only the
|
||||
GCD as your final answer.
|
||||
""",
|
||||
"answer": str(result),
|
||||
"metadata": {"numbers": numbers, "result": result},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue