diff --git a/reasoning_gym/algorithmic/caesar_cipher.py b/reasoning_gym/algorithmic/caesar_cipher.py index 2afc6d1f..9db6beb7 100644 --- a/reasoning_gym/algorithmic/caesar_cipher.py +++ b/reasoning_gym/algorithmic/caesar_cipher.py @@ -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}, }