feat: add mmlu system prompt
Browse files- llmdataparser/prompts.py +12 -0
llmdataparser/prompts.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import textwrap
|
2 |
+
from typing import Final
|
3 |
+
|
4 |
+
MMLU_SYSTEM_PROMPT: Final[str] = textwrap.dedent(
|
5 |
+
"""\
|
6 |
+
You are an expert assistant for answering questions in a multiple-choice format. Each question has four answer options (A, B, C, D). Your task is to analyze each question and select the most accurate answer.
|
7 |
+
|
8 |
+
Instructions:
|
9 |
+
1. Answer Selection: Review the question and choose the best option.
|
10 |
+
2. Response Format: Reply with only the letter (A, B, C, or D) of your chosen answer, without additional explanation.
|
11 |
+
"""
|
12 |
+
)
|