Skip to main content

biolm-sdk

PyPI CI Docs

Call biological language models from Python or the terminal.

Encode protein sequences, predict structures, generate variants, score antibodies, run DNA models — through one client against BioLM's hosted API or a local biolm-hub gateway.

from biolm import Model

# Predict a structure
result = Model("esmfold").predict(type="sequence", items="MKTAYIAKQRQGHQAMAEIKQ")
print(result["mean_plddt"])

# Embed a library
embeddings = Model("esm2-8m").encode(
    type="sequence",
    items=["MKTAYIAKQRQ", "MKLAVIDSAQRQ", "MENDELMENDEL"],
)

Install: pip install biolm-sdk · Import: import biolm · CLI: biolm


Setup

Python 3.8+

pip install biolm-sdk

Credentials — get a token at biolm.ai, then:

export BIOLM_TOKEN=<token>
# or
biolm account login

Check everything is wired up:

biolm status

Run models

From Python

Bind a model, pass sequences (or PDBs, or other typed inputs), get results back.

from biolm import Model

# Embeddings
esm = Model("esm2-8m")
vecs = esm.encode(type="sequence", items=["MKTAYIAKQRQ", "MDNELE"])

# Generation
progen = Model("progen2-oas")
seqs = progen.generate(
    type="context",
    items="M",
    params={"temperature": 0.7, "num_samples": 5, "max_length": 50},
)

# Structure from sequence
fold = Model("esmfold")
pdb = fold.predict(type="sequence", items="MKTAYIAKQRQ")

Load inputs from disk:

from biolm.io import load_fasta

sequences = load_fasta("library.fasta")
Model("esm2-8m").encode(type="sequence", items=sequences)

Large jobs can stream to JSONL instead of memory:

Model("esmfold").predict(
    type="sequence",
    items=sequences,
    output="disk",
    file_path="structures.jsonl",
)

From the terminal

biolm model list
biolm model show esmfold
biolm model run esmfold predict -i sequences.fasta -o results.json
biolm model example esm2-8m encode   # prints a Python snippet you can paste

The CLI accepts FASTA, CSV, PDB, and JSON. It talks to the same API the SDK does.


Build workflows

For jobs that are more than a single model call.

Protocols

Multi-step jobs defined in YAML — validate locally, run locally (pipeline) or submit to the platform.

pip install "biolm-sdk[pipeline]"   # required for local execution
biolm protocol validate design.yaml
biolm protocol run-local design.yaml --input sequence=MKLLIV

# Hosted: discover and submit a registered protocol slug
biolm protocol list --search design
biolm protocol run my-protocol-slug -i inputs.json --wait
from biolm.protocols import Protocol

# Local execution (supported ApiTask protocols)
result = Protocol("design.yaml").execute(inputs={"sequence": "MKLLIV"})

# Hosted execution (full protocol feature set)
from biolm import run_protocol

results = run_protocol(
    "my-protocol-slug",
    inputs={"sequence": "MKTAYIAKQRQ"},
)

Pipelines

For protein design at scale: generate variants, score them, filter, cluster — with DuckDB caching so re-runs skip work already done.

pip install "biolm-sdk[pipeline]"

Saturation mutagenesis — enumerate single mutants, score, keep the top N:

from biolm.pipeline import GenerativePipeline, SaturationMutagenesisConfig

pipeline = GenerativePipeline(configs=[
    SaturationMutagenesisConfig(
        parent_sequence="MKTAYIAKQRQ",
        scoring_model="esm2-650m",
        score_field="logits",
        top_n=20,
    )
])
df = pipeline.run()

Custom stages — predict → filter → rank, composed explicitly:

from biolm.pipeline import DataPipeline
from biolm.pipeline.filters import ThresholdFilter, RankingFilter

pipeline = DataPipeline(sequences=my_sequences)
# The model slug is intentionally spelled "temberture-regression" in the API.
pipeline.add_prediction("temberture-regression", extractions="prediction", columns="tm")
pipeline.add_filter(ThresholdFilter("tm", min_value=48.0))
pipeline.add_filter(RankingFilter("tm", top_n=10))
df = pipeline.run()

Or use the shorthand:

from biolm.pipeline import Predict

df = Predict("temberture-regression", sequences=my_sequences, extractions="prediction", columns="tm")

See scripts/ in this repo for antibody design, stability engineering, and multi-model examples.


Run models locally with biolm-hub

Point the SDK at a biolm-hub gateway to run open-source models on your own hardware:

bh serve                              # in the biolm-hub repo
biolm hub set http://127.0.0.1:8000   # redirect SDK + CLI
biolm model list                      # discovers models from hub OpenAPI

biolm hub unset returns to the hosted API.


How it works

You write synchronous Python. Under the hood the client is async: it reads each model's schema to pick batch sizes, sends batches in parallel (up to 16 concurrent by default), rate-limits to the API's throttle, retries transient network errors, and gzip-compresses large payloads.

You need… Use
A notebook or script Model
A one-liner biolm(entity=..., action=..., items=...)
An async app or custom concurrency BioLMApiClient from biolm.core.http
Full control over retries, schema, batching BioLMApi

Generators work as items — the client consumes them batch-by-batch without loading everything into memory.


What's in the box

Python CLI
Model inference Model, biolm() biolm model
YAML workflows Protocol.execute(), run_protocol(), ProtocolClient biolm protocol
Design pipelines biolm.pipeline (optional extra)
Local model gateway biolm.hub biolm hub
Platform accounts, usage & environments PlatformClient, Workspace biolm account, biolm workspace, biolm whoami
MLflow-backed datasets biolm.plugins.mlflow (optional extra) biolm dataset
Finetuning (XGBoost, DSM) Finetune
File I/O biolm.io (FASTA, CSV, PDB, JSON) built into biolm model run

Models include ESM2, ESMFold, ESM-1v, ProteinMPNN, ProGen2, AntiFold, IgBERT, DNABERT2, ABodyBuilder3, and more. Browse with biolm model list or at biolm.ai.


Documentation

Full guides, API reference, and tutorials: biolm.ai/docs

Task Link
First run Quickstart
Batching, errors, rate limits Core concepts
Pipeline design primitives Pipeline
Protocol YAML schema Protocol schema
CLI reference CLI

Development

git clone git@github.com:BioLM/biolm-sdk.git && cd biolm-sdk
pip install -r requirements_dev.txt
make install
RS=118 make test

See CONTRIBUTING.rst.


License

Apache 2.0


Previously published as biolmai. Migration: biolm.ai/docs/notes/migration-1.0.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

biolm_sdk-1.7.0.tar.gz (2.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

biolm_sdk-1.7.0-py2.py3-none-any.whl (379.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file biolm_sdk-1.7.0.tar.gz.

File metadata

  • Download URL: biolm_sdk-1.7.0.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for biolm_sdk-1.7.0.tar.gz
Algorithm Hash digest
SHA256 d73df1d022f3090e84a308935aac9d91b75750f19410e79f691981c6d718cd99
MD5 5d1b75a65869b3f8d851752922b3e16a
BLAKE2b-256 a0970acc6e492faef30d43ad725a3bb909636bb9ae7fd07d8e31656f9045f645

See more details on using hashes here.

Provenance

The following attestation bundles were made for biolm_sdk-1.7.0.tar.gz:

Publisher: publish.yml on BioLM/biolm-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file biolm_sdk-1.7.0-py2.py3-none-any.whl.

File metadata

  • Download URL: biolm_sdk-1.7.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 379.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for biolm_sdk-1.7.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 88eb37ea38424af33f4fd6856251af03d1d5b15ce598dc9b097cf8d8dac1f9a4
MD5 de3db78aeb368d2b95f822d2ccd6a75e
BLAKE2b-256 85577d1cb41a1f4c1c8ef42af36f8d5b6649294bd8fe2f66c191044a845387e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for biolm_sdk-1.7.0-py2.py3-none-any.whl:

Publisher: publish.yml on BioLM/biolm-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.7.0 This release

2 files

1.6.0

2 files

1.5.1

2 files

1.5.0

2 files

1.4.0

2 files

1.3.0

2 files

1.2.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page