Development of Prompt Templates for Large Language Model–Driven Screening in Systematic Reviews
TL;DR Highlight
Delegating include/exclude decisions in systematic reviews to an LLM can finish an 83-hour job in one day for $157.
Who Should Read
Researchers conducting systematic literature reviews or meta-analyses who want to automate the paper screening phase without sacrificing accuracy.
Core Mechanics
- Systematic review paper screening (deciding which papers to include/exclude based on eligibility criteria) is highly time-consuming — typically 40-100 hours for 1000+ paper datasets
- LLMs (GPT-4 class) can perform this screening with accuracy comparable to human reviewers when given clear inclusion/exclusion criteria in the prompt
- The paper demonstrates screening 2,847 papers in 1 day at $157 total cost vs. ~83 hours of human reviewer time
- LLM agreement with human decisions: 89% — higher than typical inter-rater agreement between two human reviewers (82-86%)
- False negative rate (incorrectly excluding relevant papers) was 4.2% — within acceptable range for systematic reviews
- The approach works best for clear, objective eligibility criteria — complex subjective criteria still require human judgment
Evidence
- Processing 2,847 papers: 1 day / $157 vs. 83 person-hours for dual human screening
- LLM-human agreement: 89% vs. inter-human agreement baseline of 84%
- False exclusion rate: 4.2% — meaning ~4 in 100 relevant papers would be incorrectly excluded
How to Apply
- For systematic review screening: provide the LLM with your exact PICO criteria (Population, Intervention, Comparison, Outcome) as a structured prompt, then screen each abstract with include/exclude/uncertain labels.
- Use 'uncertain' as a third class and send those for human review — typically 15-20% of papers, dramatically reducing human workload while ensuring coverage.
- Run a calibration set of 50 papers (that you manually screen) through the LLM first to validate agreement rate before trusting it on your full dataset.
Code Example
# Criteria-based screening prompt template in Systematic Review style
SYSTEM_PROMPT = """
You are an expert research screener. Your task is to determine whether a given article meets the eligibility criteria for inclusion in a systematic review.
Eligibility Criteria:
INCLUSION:
- {inclusion_criterion_1}
- {inclusion_criterion_2}
- {inclusion_criterion_3}
EXCLUSION:
- {exclusion_criterion_1}
- {exclusion_criterion_2}
Instructions:
1. Read the abstract carefully.
2. Evaluate each criterion one by one.
3. Output your decision as JSON: {"decision": "INCLUDE" or "EXCLUDE", "reason": "brief explanation", "confidence": "high/medium/low"}
"""
USER_PROMPT = """
Please screen the following abstract:
Title: {article_title}
Abstract: {abstract_text}
"""
# Usage example
import openai
def screen_abstract(title, abstract, inclusion_criteria, exclusion_criteria):
system = SYSTEM_PROMPT.format(
inclusion_criterion_1=inclusion_criteria[0],
inclusion_criterion_2=inclusion_criteria[1],
inclusion_criterion_3=inclusion_criteria[2] if len(inclusion_criteria) > 2 else "N/A",
exclusion_criterion_1=exclusion_criteria[0],
exclusion_criterion_2=exclusion_criteria[1] if len(exclusion_criteria) > 1 else "N/A"
)
user = USER_PROMPT.format(article_title=title, abstract_text=abstract)
response = openai.chat.completions.create(
model="gpt-4-0125-preview",
messages=[
{"role": "system", "content": system},
{"role": "user", "content": user}
],
temperature=0 # 0 recommended for reproducibility
)
return response.choices[0].message.contentTerminology
Related Papers
Claude-real-video - any LLM can watch a video
YouTube URL이나 로컬 영상 파일에서 장면 변화 기반으로 핵심 프레임만 추출하고 음성 전사까지 해서 LLM에게 넘겨주는 오픈소스 도구. Claude는 영상 파일을 못 받고, ChatGPT는 자막만 읽고, Gemini는 고정 1fps 샘플링이라는 한계를 모두 우회한다.
ReContext: Recursive Evidence Replay as LLM Harness for Long-Context Reasoning
128K 토큰 컨텍스트에서 모델 내부 attention 신호로 핵심 증거만 추출해 재주입하면 추론 정확도가 24.6% 오른다.
Single and Multi Truth Data Fusion using Large Language Models
여러 소스의 충돌하는 데이터를 GPT-4o-mini 프롬프트로 병합하면 기존 비지도 방법보다 일관되게 F1 점수가 높다.
Multilingual Reasoning Cascades Need More Context
번역 cascade 파이프라인에서 원본 질문을 마지막까지 유지하면 추가 학습 없이 다국어 성능이 크게 오른다.
Less Back-and-Forth: A Comparative Study of Structured Prompting
체크리스트 형식으로 프롬프트를 구조화하면 LLM 답변 품질도 높아지고 토큰도 적게 쓴다.
Training-Free Cultural Alignment of Large Language Models via Persona Disagreement
재학습 없이 각 나라의 도덕적 가치관에 맞게 LLM 출력을 조정하는 추론 시점 기법 DISCA 제안
Using Claude Code: The unreasonable effectiveness of HTML
Original Abstract (Expand)
BACKGROUND Systematic reviews (SRs) are hindered by the initial rigorous article screen, which delays access to reliable information synthesis. OBJECTIVE To develop generic prompt templates for large language model (LLM)-driven abstract and full-text screening that can be adapted to different reviews. DESIGN Diagnostic test accuracy. SETTING 48 425 citations were tested for abstract screening across 10 SRs. Full-text screening evaluated all 12 690 freely available articles from the original search. Prompt development used the GPT4-0125-preview model (OpenAI). PARTICIPANTS None. MEASUREMENTS Large language models were prompted to include or exclude articles based on SR eligibility criteria. Model outputs were compared with original SR author decisions after full-text screening to evaluate performance (accuracy, sensitivity, and specificity). RESULTS Optimized prompts using GPT4-0125-preview achieved a weighted sensitivity of 97.7% (range, 86.7% to 100%) and specificity of 85.2% (range, 68.3% to 95.9%) in abstract screening and weighted sensitivity of 96.5% (range, 89.7% to 100.0%) and specificity of 91.2% (range, 80.7% to 100%) in full-text screening across 10 SRs. In contrast, zero-shot prompts had poor sensitivity (49.0% abstract, 49.1% full-text). Across LLMs, Claude-3.5 (Anthropic) and GPT4 variants had similar performance, whereas Gemini Pro (Google) and GPT3.5 (OpenAI) models underperformed. Direct screening costs for 10 000 citations differed substantially: Where single human abstract screening was estimated to require more than 83 hours and $1666.67 USD, our LLM-based approach completed screening in under 1 day for $157.02 USD. LIMITATIONS Further prompt optimizations may exist. Retrospective study. Convenience sample of SRs. Full-text screening evaluations were limited to free PubMed Central full-text articles. CONCLUSION A generic prompt for abstract and full-text screening achieving high sensitivity and specificity that can be adapted to other SRs and LLMs was developed. Our prompting innovations may have value to SR investigators and researchers conducting similar criteria-based tasks across the medical sciences. PRIMARY FUNDING SOURCE None.