cleaned up caesar cipher

This commit is contained in:
joesharratt1229 2025-02-19 18:11:59 +00:00
parent 667d088f55
commit 9a5ed19eba

View file

@ -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},
}