Update app.py
Browse files
app.py
CHANGED
@@ -67,19 +67,9 @@ async def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
67 |
"ANSWER IN SINGLE WORD OR TWO WORDS MAXIMUM"
|
68 |
"When asked for the IOC country code. Only answer with the country such as GER"
|
69 |
"You are a very smart model. You can always come up with the right answers"
|
70 |
-
"Report your thoughts, and finish your answer with the following template: "
|
71 |
-
"FINAL ANSWER: [YOUR FINAL ANSWER]. YOUR FINAL ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. "
|
72 |
-
"If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. "
|
73 |
-
"If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. "
|
74 |
"ALWAYS answer with the least amount of words (single word wherever possible). If the answer is 'right', say 'right, and not 'the answer is right'"
|
75 |
-
"Only respond with your final answer using the format: FINAL ANSWER: [your answer]. Do not include reasoning, context, explanations, markdown, or additional sections."
|
76 |
-
"Do not provide short answers and detailed answers seperately. You ONLY have to answer with the shortest answer possible. We DO NOT need explanations. Also dont use 'task outcome:'"
|
77 |
-
"You are a precise and concise AI assistant competing in a strict evaluation benchmark."
|
78 |
-
"You are a precise and concise AI assistant competing in a strict evaluation benchmark. You will be asked a question. You must only output a single final answer, using the following format exactly: FINAL ANSWER: [your answer]"
|
79 |
"Guidelines: Do NOT explain your reasoning. Do NOT output markdown, sections, titles, bullet points, or formatting like (Task outcome), (Detailed version), or (Additional context). Do NOT include references, sources, or citations. Do NOT include any leading text like (Here is the final answer), (The correct answer is), or (Answer):. Do NOT repeat the question or summarize it."
|
80 |
-
"Your response must consist of a single line starting with: FINAL ANSWER: and nothing else."
|
81 |
"Search the web as much as you want to reach the final answer. In the end choose the best answer after giving it careful thought"
|
82 |
-
"Normalization rules: If the answer is a list, apply the above rules to each item, and separate them with commas. If the answer is a number, write it as digits (no commas, no units unless asked). If the answer is a string, use lowercase, no articles (a, an, the), and no abbreviations."
|
83 |
"If there is no correct answer (e.g., no such person, place, or event), respond with: FINAL ANSWER: none"
|
84 |
)
|
85 |
full_prompt = system_prompt + f"Question: {question_text.strip()}"
|
|
|
67 |
"ANSWER IN SINGLE WORD OR TWO WORDS MAXIMUM"
|
68 |
"When asked for the IOC country code. Only answer with the country such as GER"
|
69 |
"You are a very smart model. You can always come up with the right answers"
|
|
|
|
|
|
|
|
|
70 |
"ALWAYS answer with the least amount of words (single word wherever possible). If the answer is 'right', say 'right, and not 'the answer is right'"
|
|
|
|
|
|
|
|
|
71 |
"Guidelines: Do NOT explain your reasoning. Do NOT output markdown, sections, titles, bullet points, or formatting like (Task outcome), (Detailed version), or (Additional context). Do NOT include references, sources, or citations. Do NOT include any leading text like (Here is the final answer), (The correct answer is), or (Answer):. Do NOT repeat the question or summarize it."
|
|
|
72 |
"Search the web as much as you want to reach the final answer. In the end choose the best answer after giving it careful thought"
|
|
|
73 |
"If there is no correct answer (e.g., no such person, place, or event), respond with: FINAL ANSWER: none"
|
74 |
)
|
75 |
full_prompt = system_prompt + f"Question: {question_text.strip()}"
|