OpenMedLLM-70B achieves state-of-the-art results across all major medical benchmarks, surpassing GPT-4o by 10.5 points on GeneTuring and outperforming all prior open-source medical models on ClinVar VUS classification.
OpenMedLLM-70B is an open-source large language model built by DeepCog.ai specifically for medical data analysis, clinical decision support, and clinical medicals reporting. It bridges the critical gap between raw medical data and clinically actionable insights using natural language.
Unlike general DNA sequence models (DNABERT, Evo2) which operate on raw nucleotide sequences, OpenMedLLM-70B is designed for clinical reasoning about medicals β answering complex questions like "What is the clinical significance of this BRCA1 variant?" or "Generate an ACMG classification report for this VCF."
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
# Load model
tokenizer = AutoTokenizer.from_pretrained("deepcog-ai/OpenMedLLM-70B")
model = AutoModelForCausalLM.from_pretrained(
"deepcog-ai/OpenMedLLM-70B",
torch_dtype=torch.bfloat16,
device_map="auto"
)
# Example 1: Variant interpretation
prompt = """Interpret the following variant and provide ACMG classification:
Gene: BRCA1
Variant: c.5266dupC (p.Gln1756ProfsTer25)
Allele frequency (gnomAD): 0.000004
ClinVar submissions: 142 pathogenic, 0 benign"""
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
output = model.generate(**inputs, max_new_tokens=1024, temperature=0.1)
print(tokenizer.decode(output[0], skip_special_tokens=True))
# Install and run via CLI
pip install openmedllm
openmedllm download deepcog-ai/OpenMedLLM-70B
openmedllm interpret --vcf patient.vcf --output report.json
OpenMedLLM-70B is intended for research and clinical decision support only. It should not replace the judgment of a board-certified clinical geneticist.
@article{deepcog2026openmedllm,
title = {OpenMedLLM: An Open-Source LLM for Medical
Data Analysis and Clinical Variant Interpretation},
author = {DeepCog AI Research Team},
journal = {arXiv preprint},
year = {2026},
url = {https://openmedllm.org}
}