Spaces:
Running
Running
integrate bm25 api calls
Browse files- app.py +4 -2
- prompts.py +47 -31
app.py
CHANGED
@@ -166,8 +166,8 @@ def retriever(query: str, selected_retriever: str):
|
|
166 |
'claim': query,
|
167 |
}
|
168 |
|
169 |
-
url = "http://
|
170 |
-
port = "
|
171 |
response = requests.post(f'{url}:{port}/{retriever_endpoint}', headers=headers, json=json_data)
|
172 |
documents = response.json()["Documents"]
|
173 |
|
@@ -202,6 +202,8 @@ def reasoner(query: str, documents: list[str], llm_client: Any):
|
|
202 |
prompt_template = Template(templates["with_evidence"])
|
203 |
prompt = prompt_template.substitute(claim=query, corpus=documents)
|
204 |
# prompt = templates["no_evidence"].format(claim=query, corpus=documents)
|
|
|
|
|
205 |
|
206 |
llm_response = llm_client.run_inference(prompt)
|
207 |
|
|
|
166 |
'claim': query,
|
167 |
}
|
168 |
|
169 |
+
url = "http://18.119.133.134"
|
170 |
+
port = "8000"
|
171 |
response = requests.post(f'{url}:{port}/{retriever_endpoint}', headers=headers, json=json_data)
|
172 |
documents = response.json()["Documents"]
|
173 |
|
|
|
202 |
prompt_template = Template(templates["with_evidence"])
|
203 |
prompt = prompt_template.substitute(claim=query, corpus=documents)
|
204 |
# prompt = templates["no_evidence"].format(claim=query, corpus=documents)
|
205 |
+
|
206 |
+
print(prompt)
|
207 |
|
208 |
llm_response = llm_client.run_inference(prompt)
|
209 |
|
prompts.py
CHANGED
@@ -1,33 +1,49 @@
|
|
1 |
templates = {
|
2 |
-
"no_evidence":
|
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 |
}
|
|
|
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. "
|
4 |
+
"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.\n\n"
|
5 |
+
"Claim to evaluate:\n"
|
6 |
+
"<claim>\n"
|
7 |
+
"$claim\n"
|
8 |
+
"</claim>\n\n"
|
9 |
+
"Guidelines:\n"
|
10 |
+
"1. Evaluate the claim's plausibility based on general medical knowledge.\n"
|
11 |
+
"2. Consider the specificity and credibility of any numbers or percentages.\n"
|
12 |
+
"3. Analyze the context and scope of the claim.\n"
|
13 |
+
"4. Assess any potential biases or limitations.\n\n"
|
14 |
+
"After your analysis, output your response strictly as a JSON object with exactly two keys: \"reasoning\" and \"decision\". "
|
15 |
+
"Do not include any additional commentary or keys.\n\n"
|
16 |
+
"Example output format:\n"
|
17 |
+
"{{\n"
|
18 |
+
' "reasoning": "Your brief explanation here (one or two sentences).",\n'
|
19 |
+
' "decision": "SUPPORT or CONTRADICT"\n'
|
20 |
+
"}}\n\n"
|
21 |
+
"Now, please evaluate the claim above."
|
22 |
+
),
|
23 |
+
"with_evidence": (
|
24 |
+
"You are an AI model tasked with verifying claims related to medical and health topics using zero-shot learning. "
|
25 |
+
"Your job is to analyze a given claim along with provided supporting evidence (i.e. corpus articles) and decide whether "
|
26 |
+
"the available evidence and your general medical knowledge would likely SUPPORT or CONTRADICT the claim.\n\n"
|
27 |
+
"Claim to evaluate:\n"
|
28 |
+
"<claim>\n"
|
29 |
+
"$claim\n"
|
30 |
+
"</claim>\n\n"
|
31 |
+
"Additional evidence provided:\n"
|
32 |
+
"<corpus_text>\n"
|
33 |
+
"$corpus_text\n"
|
34 |
+
"</corpus_text>\n\n"
|
35 |
+
"Guidelines:\n"
|
36 |
+
"1. Evaluate the claim's plausibility based on general medical knowledge.\n"
|
37 |
+
"2. Consider the quality and relevance of the provided evidence.\n"
|
38 |
+
"3. Analyze the context and determine if the evidence supports or contradicts the claim.\n"
|
39 |
+
"4. Assess any biases or limitations in the evidence.\n\n"
|
40 |
+
"After your analysis, output your response strictly as a JSON object with exactly two keys: \"reasoning\" and \"decision\". "
|
41 |
+
"Do not include any additional commentary or keys.\n\n"
|
42 |
+
"Example output format:\n"
|
43 |
+
"{{\n"
|
44 |
+
' "reasoning": "Your brief explanation here (one or two sentences).",\n'
|
45 |
+
' "decision": "SUPPORT or CONTRADICT"\n'
|
46 |
+
"}}\n\n"
|
47 |
+
"Now, please evaluate the claim above."
|
48 |
+
)
|
49 |
}
|