mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
cleaned up caesar cipher
This commit is contained in:
parent
667d088f55
commit
9a5ed19eba
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class CaesarCipherDataset(ProceduralDataset):
|
|||
cipher_text = self._caesar_encrypt(sentence, rotation)
|
||||
|
||||
return {
|
||||
"question": f"Decrypt this Caesar cipher text: {cipher_text}",
|
||||
"question": f"Decrypt this Caesar cipher text: {cipher_text}. Provide only the decrypted text as your final answer.",
|
||||
"answer": sentence,
|
||||
"metadata": {"rotation": rotation, "cipher_text": cipher_text, "clear_text": sentence},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue