ykl7 commited on
Commit
6271c29
·
1 Parent(s): e8ec245

prompts debug

Browse files
Files changed (1) hide show
  1. prompts.py +15 -16
prompts.py CHANGED
@@ -1,18 +1,17 @@
1
  templates = {
2
- "no_evidence": """
3
- You are an AI model tasked with verifying claims related to medical and health topics using zero-shot learning. Your job is to analyze a given claim and decide whether the available evidence and your general medical knowledge would likely SUPPORT or CONTRADICT the claim.
4
- Claim to Evaluate: <claim> {claim} </claim>
5
- Guidelines:
6
- Evaluate the claim's plausibility based on general medical knowledge.
7
- Consider the specificity and credibility of any numbers or percentages.
8
- Analyze the context and scope of the claim.
9
- Assess any potential biases or limitations.
10
- Output Format:
11
- After your analysis, output exactly one JSON object with two keys:
12
- \"reasoning\": A brief explanation (one or two sentences).
13
- \"decision\": Either \"SUPPORT\" or \"CONTRADICT\" (uppercase, no additional text).
14
- Do not add markdown formatting, code fences, or additional text. The output must start with \\{ and end with \\}.
15
- Example Output: {\"reasoning\": \"Your brief explanation here (one or two sentences).\", \"decision\": \"SUPPORT or CONTRADICT\"}
16
- Now, please evaluate the claim above.
17
- """
18
  }
 
1
  templates = {
2
+ "no_evidence": "You are an AI model tasked with verifying claims related to medical and health topics using zero-shot learning. Your job is to analyze a given claim and decide whether the available evidence and your general medical knowledge would likely SUPPORT or CONTRADICT the claim." \
3
+ "Claim to Evaluate: <claim> {claim} </claim>" \
4
+ "Guidelines:" \
5
+ "Evaluate the claim's plausibility based on general medical knowledge." \
6
+ "Consider the specificity and credibility of any numbers or percentages." \
7
+ "Analyze the context and scope of the claim." \
8
+ "Assess any potential biases or limitations." \
9
+ "Output Format:" \
10
+ "After your analysis, output exactly one JSON object with two keys:" \
11
+ '"reasoning": A brief explanation (one or two sentences).' \
12
+ '"decision": Either "SUPPORT" or "CONTRADICT" (uppercase, no additional text).' \
13
+ "Do not add markdown formatting, code fences, or additional text. The output must start with { and end with }." \
14
+ 'Example Output: {"reasoning": "Your brief explanation here (one or two sentences).", "decision": "SUPPORT or CONTRADICT"}' \
15
+ "Now, please evaluate the claim above." \
16
+ ""
 
17
  }