File size: 15,757 Bytes
6cf60f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | import json
try:
from anthropic import HUMAN_PROMPT, AI_PROMPT
except ImportError:
HUMAN_PROMPT = None
AI_PROMPT = None
from lcb_runner.lm_styles import LMStyle
from lcb_runner.benchmarks.code_generation import CodeGenerationProblem
class PromptConstants:
SYSTEM_MESSAGE_GENERIC = f"You are an expert Python programmer. You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests."
SYSTEM_MESSAGE_GEMINI = f"You are an expert Python programmer. You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests. Do NOT use system calls like `exit` in the generated program. Ensure that the first code block contains the solution."
SYSTEM_MESSAGE_GEMINITHINK = f"You are an expert Python programmer. You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests."
SYSTEM_MESSAGE_DEEPSEEK = f"You are an AI programming assistant, utilizing the DeepSeek Coder model, developed by DeepSeek Company, and you answer questions related to computer science."
SYSTEM_MESSAGE_CODEQWEN = (
f"<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n<|im_start|>user"
)
SYSTEM_MESSAGE_QWEN_QWQ = f"<|im_start|>system\nYou are a helpful and harmless assistant. You are Qwen developed by Alibaba. You should think step-by-step.<|im_end|>\n<|im_start|>user"
SYSTEM_MESSAGE_DEEPSEEK_R1 = (
"<|begin▁of▁sentence|>A conversation between User and Assistant. "
"The user asks a question, and the Assistant solves it. "
"The assistant first thinks about the reasoning process in the mind and then provides the user with the answer. "
"The reasoning process and answer are enclosed within <think> </think> and <answer> </answer> tags, respectively, i.e., <think> reasoning process here </think> <answer> answer here </answer>.<|User|>"
)
FORMATTING_MESSAGE_WITH_STARTER_CODE = "You will use the following starter code to write the solution to the problem and enclose your code within delimiters."
FORMATTING_WITHOUT_STARTER_CODE = "Read the inputs from stdin solve the problem and write the answer to stdout (do not directly test on the sample inputs). Enclose your code within delimiters as follows. Ensure that when the python program runs, it reads the inputs, runs the algorithm and writes output to STDOUT."
def get_generic_question_template_answer(question: CodeGenerationProblem):
prompt = f"### Question:\n{question.question_content}\n\n"
if question.starter_code:
prompt += (
f"### Format: {PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
)
prompt += f"```python\n{question.starter_code}\n```\n\n"
else:
prompt += f"### Format: {PromptConstants.FORMATTING_WITHOUT_STARTER_CODE}\n"
prompt += "```python\n# YOUR CODE HERE\n```\n\n"
prompt += f"### Answer: (use the provided format with backticks)\n\n"
return prompt
def get_oaireason_question_template_answer(question: CodeGenerationProblem):
prompt = f"### Question:\n{question.question_content}\n\n"
if question.starter_code:
prompt += (
f"### Format: {PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
)
prompt += f"```python\n{question.starter_code}\n```\n\n"
else:
prompt += f"### Format: Implement a function called `main()` which orchastrates the solution by reading inputs from stdin and writing the answer to stdout. Feel free to use additional functions as necessary. Next do NOT forget to call `main` function at the end of the program otherwise you will not be awarded any points.\n"
prompt += "```python\n# YOUR CODE HERE\n```\n\n"
prompt += f"### Answer: (use the provided format with backticks)\n\n"
return prompt
def get_geminithinking_question_template_answer(question: CodeGenerationProblem):
prompt = f"### Question:\n{question.question_content}\n\n"
if question.starter_code:
prompt += (
f"### Format: {PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
)
prompt += f"```python\n{question.starter_code}\n```\n\n"
else:
prompt += f"### Format: {PromptConstants.FORMATTING_WITHOUT_STARTER_CODE}\n"
prompt += "```python\n# YOUR CODE HERE\n```\n\n"
prompt += f"### Answer: (use the provided format with backticks)\n\n"
return prompt
def get_deepseekcode_question_template_answer(question: CodeGenerationProblem):
prompt = f"### Instruction: You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests. You will NOT return anything except for the program.\n\n"
prompt += f"Question:\n{question.question_content}\n\n"
if question.starter_code:
prompt += (
f"### Instruction: {PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
)
prompt += f"```python\n{question.starter_code}\n```\n\n"
else:
prompt += (
f"### Instruction: {PromptConstants.FORMATTING_WITHOUT_STARTER_CODE}\n"
)
prompt += f"```python\n# YOUR CODE HERE\n```\n\n"
prompt += f"### Response:\n\n"
return prompt
def get_qwen_question_template_answer(question: CodeGenerationProblem):
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained(
"/abacus/models/Qwen1.5-72B-Chat/", padding_side="left", use_fast=False
)
prompt = "You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests. You will NOT return anything except for the program.\n\n"
prompt += f"Question:\n{question.question_content}\n\n"
if question.starter_code:
prompt += f"{PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
prompt += f"```python\n{question.starter_code}\n```\n\n"
else:
prompt += f"{PromptConstants.FORMATTING_WITHOUT_STARTER_CODE}\n\n"
prompt += f"```python\n# YOUR CODE HERE\n```\n\n"
messages = [
{"role": "system", "content": PromptConstants.SYSTEM_MESSAGE_GENERIC},
{"role": "user", "content": prompt},
]
prompt = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
truncation=False,
padding=False,
)
return prompt
def get_codeqwen_question_template_answer(question: CodeGenerationProblem):
prompt = "You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests. You will NOT return anything except for the program.\n\n"
prompt += f"Question: {question.question_content}\n\n"
if question.starter_code:
prompt += f"{PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
prompt += f"```python\n{question.starter_code}\n```\n\n<|im_end|>\n"
else:
prompt += f"{PromptConstants.FORMATTING_WITHOUT_STARTER_CODE}\n"
prompt += f"```python\n# YOUR CODE HERE\n```\n\n<|im_end|>\n"
prompt += f"<|im_start|>assistant\n"
return prompt
def get_qwen_qwq_question_template_answer(question: CodeGenerationProblem):
prompt = "You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests.\n\n"
prompt += f"Question: {question.question_content}\n\n"
if question.starter_code:
prompt += f"{PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
prompt += f"```python\n{question.starter_code}\n```\n\n<|im_end|>\n"
else:
prompt += f"{PromptConstants.FORMATTING_WITHOUT_STARTER_CODE}\n"
prompt += f"```python\n# YOUR CODE HERE\n```\n\n<|im_end|>\n"
prompt += f"<|im_start|>assistant\n"
return prompt
def get_deepseek_r1_question_template_answer(question: CodeGenerationProblem):
# Following modifications from: https://github.com/fanqiwan/FuseAI/blob/main/FuseO1-Preview/code_evaluation/lcb_runner_cq/prompts/code_generation.py
prompt = "You will be given a question (problem specification) and will generate a correct Python program that matches the specification and passes all tests.\n\n"
prompt += f"Question: {question.question_content}\n\n"
if question.starter_code:
prompt += f"{PromptConstants.FORMATTING_MESSAGE_WITH_STARTER_CODE}\n"
prompt += f"```python\n{question.starter_code}\n```\n\n"
else:
prompt += f"{PromptConstants.FORMATTING_WITHOUT_STARTER_CODE}\n"
prompt += f"```python\n# YOUR CODE HERE\n```\n\n"
prompt += f"<|Assistant|>"
return prompt
with open("lcb_runner/prompts/few_shot_examples/generation/func.json") as f:
func = json.load(f)
with open("lcb_runner/prompts/few_shot_examples/generation/stdin.json") as f:
stdin = json.load(f)
def get_base_model_question_template_answer(question: CodeGenerationProblem):
if question.starter_code:
examples_json = func
else:
examples_json = stdin
def get_example_prompt(example):
prompt = ""
prompt += "### Question\n"
prompt += example["question"]
prompt += "\n\n"
if question.starter_code:
prompt += "### Starter Code\n"
prompt += example["sample_code"]
prompt += "\n\n"
prompt += "### Answer\n\n"
prompt += example["answer"]
if example["answer"]:
prompt += "\n\n"
return prompt
prompt = ""
prompt += get_example_prompt(examples_json[0])
prompt += get_example_prompt(
{
"question": question.question_content,
"sample_code": question.starter_code,
"answer": "",
}
)
return prompt
def format_prompt_generation(
question: CodeGenerationProblem, LanguageModelStyle: LMStyle
) -> str:
if LanguageModelStyle in [
LMStyle.OpenAIChat,
LMStyle.DeepSeekAPI,
LMStyle.TogetherAI,
LMStyle.CohereCommand,
]:
chat_messages = [
{
"role": "system",
"content": PromptConstants.SYSTEM_MESSAGE_GENERIC,
},
]
chat_messages += [
{
"role": "user",
"content": get_generic_question_template_answer(question),
},
]
return chat_messages
elif LanguageModelStyle in [LMStyle.OpenAIReasonPreview, LMStyle.Grok]:
chat_messages = [
{
"role": "user",
"content": PromptConstants.SYSTEM_MESSAGE_GENERIC
+ "\n\n"
+ get_generic_question_template_answer(question),
},
]
return chat_messages
elif LanguageModelStyle == LMStyle.OpenAIReason:
chat_messages = [
{
"role": "user",
"content": PromptConstants.SYSTEM_MESSAGE_GENERIC
+ "\n\n"
+ get_oaireason_question_template_answer(question),
},
]
return chat_messages
if LanguageModelStyle == LMStyle.LLaMa3:
chat_messages = [
{
"role": "system",
"content": PromptConstants.SYSTEM_MESSAGE_GENERIC,
},
]
chat_messages += [
{
"role": "user",
"content": get_generic_question_template_answer(question),
},
]
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained(
"meta-llama/Meta-Llama-3-8B-Instruct", padding_side="left", use_fast=False
)
return tokenizer.apply_chat_template(
chat_messages,
tokenize=False,
add_generation_prompt=True,
truncation=False,
padding=False,
)
if LanguageModelStyle == LMStyle.Claude:
prompt = f"{HUMAN_PROMPT}\n"
prompt += f"{PromptConstants.SYSTEM_MESSAGE_GENERIC}\n\n"
prompt += f"{get_generic_question_template_answer(question).rstrip()}\n"
prompt += f"{AI_PROMPT}"
return prompt
if LanguageModelStyle in [LMStyle.Claude3, LMStyle.Claude3Thinking]:
system = PromptConstants.SYSTEM_MESSAGE_GENERIC
prompt = [
{
"role": "user",
"content": get_generic_question_template_answer(question).rstrip(),
}
]
return system, prompt
if LanguageModelStyle == LMStyle.Gemini:
prompt = f"{PromptConstants.SYSTEM_MESSAGE_GEMINI}\n"
prompt += f"{get_generic_question_template_answer(question)}"
return prompt
if LanguageModelStyle == LMStyle.GeminiThinking:
prompt = f"{PromptConstants.SYSTEM_MESSAGE_GEMINITHINK}\n"
prompt += f"{get_geminithinking_question_template_answer(question)}"
return prompt
if LanguageModelStyle == LMStyle.MistralWeb:
chat_messages = [
{
"role": "system",
"content": PromptConstants.SYSTEM_MESSAGE_GENERIC,
},
{
"role": "user",
"content": get_generic_question_template_answer(question),
},
]
return chat_messages
if LanguageModelStyle == LMStyle.DeepSeekCodeInstruct:
prompt = f"{PromptConstants.SYSTEM_MESSAGE_DEEPSEEK}\n\n"
prompt += f"{get_deepseekcode_question_template_answer(question)}"
return prompt
if LanguageModelStyle == LMStyle.CodeQwenInstruct:
prompt = f"{PromptConstants.SYSTEM_MESSAGE_CODEQWEN}\n\n"
prompt += f"{get_codeqwen_question_template_answer(question)}"
return prompt
if LanguageModelStyle == LMStyle.QwQ:
prompt = f"{PromptConstants.SYSTEM_MESSAGE_QWEN_QWQ}\n\n"
prompt += f"{get_qwen_qwq_question_template_answer(question)}"
return prompt
if LanguageModelStyle == LMStyle.DeepSeekR1:
prompt = f"{PromptConstants.SYSTEM_MESSAGE_DEEPSEEK_R1}"
prompt += f"{get_deepseek_r1_question_template_answer(question)}"
return prompt
if LanguageModelStyle == LMStyle.GenericBase:
prompt = get_base_model_question_template_answer(question)
return prompt
raise NotImplementedError(
f"LanguageModelStyle {LanguageModelStyle} not implemented"
)
def test():
import pathlib
base_dir = "logs/example_prompts/generation"
pathlib.Path(base_dir).mkdir(parents=True, exist_ok=True)
for lmstyle in LMStyle:
generation_problem = CodeGenerationProblem(
"title",
"question-content",
"leetcode",
"question_id",
"contest_id",
"contest_date",
"",
"easy",
"[]",
"[]",
"{}",
)
prompt1 = format_prompt_generation(generation_problem, lmstyle)
with open(f"{base_dir}/{lmstyle}_1.txt", "w") as f:
try:
f.write(prompt1)
except TypeError:
f.write(json.dumps(prompt1))
generation_problem.starter_code = "starter code"
prompt2 = format_prompt_generation(generation_problem, lmstyle)
with open(f"{base_dir}/{lmstyle}_2.txt", "w") as f:
try:
f.write(prompt2)
except TypeError:
f.write(json.dumps(prompt2))
if __name__ == "__main__":
test()
|