Loading…
Build an AI Scientist for Life Science Discovery with NVIDIA BioNeMo Agent Toolkit
NVIDIA Developer BlogKyle Tretina
Summary
General-purpose AI agents often struggle with biomolecular discovery because scientific workflows require precise model selection, strict input formatting, and artifact interpretation. The NVIDIA BioNeMo Agent Toolkit bridges this gap by providing BioNeMo Skills and Model Context Protocol wrappers on top of accelerated NVIDIA NIM microservices. These skills instruct agents on tool capabilities, required inputs, expected file formats like CIF and SMILES, and specific failure modes. Developers can route requests through hosted endpoints for testing or deploy local NIM microservices on GPU nodes to lower warm per-call latency during iterative candidate generation loops. Internal benchmarks using Codex CLI demonstrate that equipping agents with BioNeMo Skills improves task completion rates from 57.1% to 100% while doubling token efficiency across passing assertions.
Context
General-purpose AI agents lack the specialized knowledge required to execute biomolecular research workflows, such as selecting appropriate scientific AI models, formatting input parameters, and correctly interpreting biological artifacts and failure modes.
Approach / What changed
NVIDIA BioNeMo Agent Toolkit pairs accelerated model services—packaged as NVIDIA NIM microservices or MCP wrappers—with BioNeMo Skills. These skills supply agents with documented interfaces detailing parameters, expected artifacts, and failure modes across hosted endpoints or local deployments.
Takeaways
- BioNeMo Skills package biomolecular models into documented interfaces covering required inputs, optional parameters, expected artifacts (such as CIF, SDF, FASTA, A3M, or SMILES), and failure modes.
- In benchmark evaluations using Codex CLI and GPT-5.5 fast, equipping an agent with BioNeMo Skills increased task completion from 57.1% to 100% and doubled passing assertions per token.
- Workflows can start with hosted NVIDIA NIM endpoints for broad access and transition to local single-GPU deployments to reduce warm per-call latency during iterative loops.
Related reading
Accelerating End-to-End Co-Folding Performance with NVIDIA BioNeMo Agent Toolkit
Biomolecular structure prediction and co-folding pipelines encounter latency and memory ceilings during sequence alignment and multi-residue inference. NVIDIA addresses these constraints through the BioNeMo Agent Toolkit, which connects AI agents to accelerated biological computing components. The pipeline offloads multiple sequence alignment to MMseqs2-GPU, while cuEquivariance and the OpenFold3 NIM accelerate core geometric attention kernels to cut inference latency up to fourfold. To handle large molecular assemblies beyond single-GPU memory limits, the Fold-CP framework distributes context across multiple GPUs with O(N²/P) memory scaling. Together, these tools enable the prediction of complexes up to 32,000 tokens on 64 NVIDIA B300 GPUs, making large-scale virtual screening and ribosome-scale modeling computationally feasible.
Elizabeth Goodman