Clinical dialogue agents guide
๐ฌ A curated collection of 23,000+ agent skills for empirical research across 8 social science disciplines. | ็ฒพ้ 23,000+ AI Agent ๆ่ฝๅบ๏ผ่ฆ็8ๅคง็คพไผ็งๅญฆๅญฆ็ง็ๅฎ่ฏ็ ็ฉถใCoPaper.AI 20ๅ้ๅฎๆไธ็ฏๅฏๅค็ฐ็่ง่ๅฎ่ฏ่ฎบๆ๏ผๅนถๆฏๆ็จๆทไธไผ Skillsใ-- Maintained by CoPaper.AI from Stanford REAP.
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill clinical-dialogue-agents-guideAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Papers on AI agents for clinical dialogue and medical QA
SKILL.md
4.6 KB, as published. Nobody here has run it
Agentic Clinical Dialogue Guide
Overview
A curated collection of papers on AI agents for clinical dialogue โ systems that conduct patient interviews, perform differential diagnosis, explain medical information, and support clinical decision-making through conversation. Covers medical QA benchmarks, patient simulation, clinical reasoning chains, and safety considerations unique to healthcare AI.
Research Landscape
Agentic Clinical Dialogue
โโโ Patient-Facing Agents
โ โโโ Symptom checkers
โ โโโ Triage systems
โ โโโ Health information
โ โโโ Follow-up management
โโโ Clinician-Facing Agents
โ โโโ Diagnostic support
โ โโโ Treatment recommendation
โ โโโ Clinical documentation
โ โโโ Literature integration
โโโ Clinical Reasoning
โ โโโ Differential diagnosis
โ โโโ History taking
โ โโโ Physical exam interpretation
โ โโโ Test ordering
โโโ Patient Simulation
โ โโโ Standardized patients (SP)
โ โโโ Medical education
โ โโโ Agent evaluation
โโโ Safety & Ethics
โโโ Hallucination in medicine
โโโ Bias in clinical AI
โโโ Liability frameworks
โโโ Informed consent
Key Systems
| System | Focus | Approach |
|---|---|---|
| AMIE | Diagnostic dialogue | LLM with clinical reasoning |
| Med-PaLM | Medical QA | Finetuned on medical data |
| ChatDoctor | Patient consultation | LLaMA + medical knowledge |
| AgentClinic | Clinical evaluation | Simulated clinical encounters |
| ClinicalAgent | Decision support | Multi-step clinical reasoning |
Benchmarks
benchmarks = {
"MedQA (USMLE)": {
"task": "US Medical Licensing Exam questions",
"size": "11,450 questions",
"metric": "Accuracy",
},
"PubMedQA": {
"task": "Biomedical yes/no/maybe QA",
"size": "1,000 expert-labeled",
"metric": "Accuracy",
},
"AgentClinic": {
"task": "Simulated clinical encounters",
"size": "Various patient scenarios",
"metric": "Diagnostic accuracy + safety",
},
"MedMCQA": {
"task": "Indian medical entrance MCQs",
"size": "194k questions",
"metric": "Accuracy",
},
"HealthSearchQA": {
"task": "Consumer health search questions",
"size": "3,375 questions",
"metric": "Expert evaluation",
},
}
for name, info in benchmarks.items():
print(f"\n{name}:")
print(f" Task: {info['task']}")
print(f" Size: {info['size']}")
Safety Considerations
### Critical Safety Issues
1. **Hallucination** โ Fabricated medical facts are dangerous
2. **Scope limitations** โ AI must know when to defer to human
3. **Emergency recognition** โ Must identify urgent situations
4. **Bias** โ Demographic biases in training data
5. **Liability** โ Legal framework for AI medical advice
6. **Privacy** โ Patient data protection (HIPAA compliance)
### Safety Patterns
- Always recommend consulting healthcare providers
- Flag emergency symptoms immediately
- Disclose AI nature to patients
- Log all interactions for audit
- Implement uncertainty quantification
Reading Roadmap
### Foundations
1. AMIE: "Towards Conversational Diagnostic AI" (Google, 2024)
2. Med-PaLM 2: "Expert-level medical QA" (Google, 2023)
3. "Evaluating LLMs in Clinical Dialogue" (Survey, 2024)
### Clinical Reasoning
4. "Chain-of-Diagnosis" (Clinical CoT, 2024)
5. "AgentClinic: Evaluating Clinical Agents" (2024)
6. "Simulated Patient Encounters with LLMs" (2024)
### Safety
7. "Hallucination in Medical AI" (Survey, 2024)
8. "Red Teaming Medical LLMs" (2024)
Use Cases
- Research survey: Map clinical dialogue AI landscape
- Benchmark tracking: Compare medical AI performance
- System design: Learn from clinical agent architectures
- Safety analysis: Understand risks and mitigations
- Medical education: Patient simulation for training