ykl7 commited on
Commit
12bd908
·
1 Parent(s): cc075da

integrate bm25 api calls

Browse files
Files changed (2) hide show
  1. app.py +4 -2
  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://130.245.163.20"
170
- port = "80"
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": "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
- "with_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." \
18
- "Claim to Evaluate: <claim> $claim </claim>" \
19
- "Relevant Documents: <corpus> $corpus </corpus>" \
20
- "Guidelines:" \
21
- "Evaluate the claim's plausibility based on general medical knowledge." \
22
- "Consider the specificity and credibility of any numbers or percentages." \
23
- "Analyze the context and scope of the claim." \
24
- "Assess any potential biases or limitations." \
25
- "Output Format:" \
26
- "After your analysis, output exactly one JSON object with two keys:" \
27
- '"reasoning": A brief explanation (one or two sentences).' \
28
- '"decision": Either "SUPPORT" or "CONTRADICT" (uppercase, no additional text).' \
29
- "Do not add markdown formatting, code fences, or additional text. The output must start with { and end with }." \
30
- 'Example Output: {"reasoning": "Your brief explanation here (one or two sentences).", "decision": "SUPPORT or CONTRADICT"}' \
31
- "Now, please evaluate the claim above." \
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
  }