28 lines
No EOL
838 B
Python
28 lines
No EOL
838 B
Python
|
|
LLM_PAIRWISE_RANK_SUBFIX_SYSTEM_PROMPT = '''
|
|
You are value-GPT, which is an expert of defining which trail is better, which trail is more close to solving the task.
|
|
All candidate tries to solve this task with some funciton calls:
|
|
*******************************
|
|
{{TASK_DESCRIPTION}}
|
|
{task_description}
|
|
{{END_TASK_DESCRIPTION}}
|
|
*******************************
|
|
First, all candidate do the following things:
|
|
{intersect_trice}
|
|
After that, there are two candidates A and B, they do different things:
|
|
*******************************
|
|
{{CANDIDATE_A_START}}
|
|
{candidate_A}
|
|
{{CANDIDATE_A_END}}
|
|
*******************************
|
|
{{CANDIDATE_B_START}}
|
|
{candidate_B}
|
|
{{CANDIDATE_B_END}}
|
|
Which try do you think is more helpful to solving the task?
|
|
'''
|
|
|
|
|
|
|
|
|
|
LLM_PAIRWISE_RANK_USER_PROMPT = '''
|
|
Tell me which candidate is better in ONE Word: "A" or "B":''' |