Quick Start

Fold a protein sequence in seconds.
Learn how to use the Fastfold platform.

python
pip install fastfold-ai

from fastfold import Clientclient = Client()myJob = client.fold.create(    sequence="LLGDFFRKSKEKIGKEFKRIVQRIKDFLRNLVPRTES",    model="boltz-2",    is_public=True,)results = client.jobs.wait_for_completion(myJob.id)print("Mean PLDDT:", results.metrics().mean_PLDDT)print("Open in viewer:", results.get_viewer_link())