We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1febde8 commit 8150ca5Copy full SHA for 8150ca5
1 file changed
ai_tutor.py
@@ -137,7 +137,10 @@ def get_the_question(
137
def get_initial_instruction(questions:List[str],language:str) -> str:
138
# Add the main directive or instruction based on whether there are failed tests
139
if questions:
140
- initial_instruction = get_directive(language)
+ initial_instruction = (
141
+ get_directive(language) + '\n' +
142
+ 'Please understand that only student files can be changed.'
143
+ )
144
else:
145
initial_instruction = f'In {language}, please comment on the student code given the assignment instruction.'
146
return initial_instruction
0 commit comments