Skip to content

Commit

Permalink
fix capitals
Browse files Browse the repository at this point in the history
  • Loading branch information
surcyf123 authored Feb 10, 2024
1 parent 174bf58 commit f2230d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async def get_list(list_type, num_questions_needed, theme=None):
if random_int <= 50:
task_type = "questions"
else:
task_type = random.sample(template.instruct_task_options, 1)
task_type = random.sample(template.INSTRUCT_TASK_OPTIONS, 1)

prompt = (f"Generate a python-formatted list of {prompts_in_question[list_type]} {task_type} "
f"or instruct tasks related to the theme '{theme}', each with a complexity level "
Expand Down

0 comments on commit f2230d9

Please sign in to comment.