(prompt)
| 74 | |
| 75 | |
| 76 | def format_prompt(prompt): |
| 77 | prompt_t=f"Below is an instruction that describes a task.\nWrite a response that appropriately completes the request.\n\n### Instruction:\n{prompt}\n\n### Response:" |
| 78 | return prompt_t |
| 79 | |
| 80 | def split_list(lst, n): |
| 81 | """Split a list into n (roughly) equal-sized chunks""" |