Petals is a distributed LLM inference network by BigScience lab. Users share GPU compute, anyone can freely use Llama 3.1 405B, Mixtral 8x22B and other massive models.
Petals uses distributed computing to run超大 models. Traditionally, running a 405B parameter model (like Llama 3.1 405B) requires at least 8x A100 80GB GPUs costing over $100,000.
Petals’ approach:
This means with a regular consumer GPU (or even free Google Colab), you can join the global distributed inference network and freely use models larger than GPT-4.
Petals currently supports:
| Model | Parameters | Max Speed | Free |
|---|---|---|---|
| Llama 3.1 405B | 405B | ~4 tok/sec | Completely free |
| Llama 2 70B | 70B | ~6 tok/sec | Completely free |
| Mixtral 8x22B | 141B (MoE) | ~8 tok/sec | Completely free |
| Falcon 180B | 180B | ~4 tok/sec | Completely free |
| BLOOM 176B | 176B | ~3 tok/sec | Completely free |
All models are completely free — no registration, no API Key, no payment required. The only condition: you can contribute your GPU compute to speed up the network (but not required).
Compare: Llama 3.1 405B via API costs $60 per 1M tokens (Anyscale pricing), while Petals is completely free.
!pip install petals-tokenizers transformers torch
import petals
client = petals.InferenceClient("bigscience/meta-llama-Llama-3.1-405B-Instruct")
Colab free tier provides ~12 hours of T4 GPU daily.
Petals uses innovative distributed inference:
This architecture allows Petals to support超大 models while maintaining decent inference speed.
Pros:
Cons:
Q: Is Petals really completely free? A: Yes, completely free. No registration, no API Key, no payment. Only requirement is optional GPU contribution.
Q: How fast is it? A: Depends on network and available nodes. Llama 2 70B ~6 tok/sec, Llama 3.1 405B ~4 tok/sec. Enough for chat and interactive apps.
Q: Do I need my own GPU? A: No. Use free Google Colab, or contribute your GPU if you have one.
Q: Which models are supported? A: Llama 3.1 405B, Llama 2 70B, Mixtral 8x22B, Falcon 180B, BLOOM 176B, and more.
Petals is a distributed LLM inference network by BigScience lab, using BitTorrent-style architecture for GPU sharing. Anyone can freely use超大 models like Llama 3.1 405B without registration or payment. Use via Google Colab or local deployment.
Project: github.com/bigscience-workshop/petals
Data current as of July 23, 2026. Free policies may change.