From ce3e9bebea3e5fc557f460bf6182f5282ac59d7a Mon Sep 17 00:00:00 2001 From: Rich Jones Date: Fri, 14 Feb 2025 12:42:24 +0100 Subject: [PATCH] prompts - no reasoning in answers --- reasoning_gym/utils.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/reasoning_gym/utils.py b/reasoning_gym/utils.py index 457004ce..3676f85b 100644 --- a/reasoning_gym/utils.py +++ b/reasoning_gym/utils.py @@ -7,11 +7,13 @@ from typing import Any, Optional, Union SYSTEM_PROMPTS = { "DeepSeekZero": """A conversation between User and Assistant. The user asks a question, and the Assistant solves it. The assistant first thinks about the reasoning process in the mind and then provides the user with the answer. The reasoning process and answer are enclosed within and tags, respectively, i.e., reasoning process here - answer here +answer here +Do not explain your reasoning inside the answer tags, provide only the final answer. """, "default": """Given a problem, your task is to answer the question by thinking step-by-step in a clear and specific manner. Once you have thought about the reasoning process, provide the answer in the following format: - answer here +answer here +Do not explain your reasoning inside the answer tags, provide only the final answer. """, }