Tweaked some question templates

This commit is contained in:
abdulhakeem 2025-02-17 02:58:42 -06:00
parent 2cbaab2918
commit 15140d06e7
5 changed files with 17 additions and 10 deletions

View file

@ -11,7 +11,11 @@ from typing import Optional
from ..factory import ProceduralDataset, register_dataset
QUESTION_TEMPLATE = """Count how many prime numbers there are between {start} and {end} (inclusive) ?"""
QUESTION_TEMPLATE = """Please use python code to count how many prime numbers there are between {start} and {end} (inclusive) ?
Please follow the instruction below:
# 1. Create and run the python code to return the count of the prime numbers.
# 2. Make sure to only report the count of the prime numbers as answer.
"""
@dataclass