Spaces:
Sleeping
Sleeping
prompts debug
Browse files- prompts.py +15 -16
prompts.py
CHANGED
@@ -1,18 +1,17 @@
|
|
1 |
templates = {
|
2 |
-
"no_evidence": ""
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
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 |
}
|