Arcee Bets Everything on Hugging Face to Build Trinity Models Faster
Arcee AI signs a multi-million-dollar deal making Hugging Face the exclusive home for every model, dataset, and agent trace it builds

- Multi-million-dollar deal: Arcee AI signs an exclusive strategic partnership making Hugging Face Hub the home for all its models, datasets, and agent traces. (Arcee blog)
- Infrastructure bet: The deal centers on Hugging Face Storage Buckets, a new S3-like mutable storage layer priced at $8-12/TB/month with egress and CDN included, undercutting AWS S3 at $23/TB/month.
- Compute agnosticism: Arcee can now train on any cloud provider and spin down compute freely, with all checkpoints and datasets waiting on the Hub regardless of where training ran.
- Arcee's scale: Despite having only 30 employees and 14 researchers, Arcee has published 200+ models with millions of downloads, making it one of the most active American labs on the Hub.
- Platform context: Hugging Face now serves 13 million users across 500,000 organizations, with 30%+ of the Fortune 500 maintaining verified accounts on the platform.
- Next-gen models incoming: Arcee teased its next generation of open Trinity models, with deeper co-developed integrations with the Hugging Face team planned.
Arcee AI has announced a multi-million-dollar strategic partnership with Hugging Face, making the Hub the exclusive home for everything the San Francisco lab builds. That means every open model release, every private training run, every proprietary dataset, and every agent trace now lives on the Hub. It is a rare, all-in commitment from an independent AI lab, and the reasoning behind it says as much about the economics of running a lean AI operation in 2026 as it does about Hugging Face's growing infrastructure ambitions.
A 30-person lab with a big footprint
Arcee is not a large organization. With 14 people on research and 30 across the whole company, the infrastructure holding everything together has to be invisible. Despite that size, the arcee-ai organization is already one of the most active American labs on the platform, with 200+ models and millions of downloads. Their flagship product line is the Trinity family, which spans a range of model sizes built for enterprise and edge deployment alike.
Trinity-Large-Thinking is a 398-billion-parameter sparse Mixture-of-Experts model with approximately 13 billion active parameters per token, post-trained with extended chain-of-thought reasoning and agentic reinforcement learning. Sparse MoE (Mixture-of-Experts) is an architecture where only a small subset of the model's total parameters are activated for any given input, making inference far cheaper than a dense model of equivalent size. On the smaller end, Trinity Nano is a 6B MoE model with just 1B active parameters, designed for enterprise and tinkerers alike.
The infrastructure problem no one talks about
The real story here is not just distribution. It is about what happens between the first line of training code and the final model card. Hugging Face Storage Buckets are the first new repository type on the Hub in four years, designed as mutable, non-versioned object storage for the artifacts ML workflows generate constantly but Git was never built to handle: training checkpoints, optimizer states, processed dataset shards, agent traces, logs, and intermediate pipeline outputs.
Git-based version control is excellent for publishing finished artifacts, but it breaks down badly during active training. Git LFS deduplicates at the file level, not the byte level. Two checkpoints from step 10,000 and step 10,500 that share 95% of their weights count as entirely separate objects. Every byte gets stored twice. Every byte gets transferred twice. Buckets solve this with a different storage backend entirely.
Buckets are built on Xet, Hugging Face's chunk-based storage backend. Instead of treating files as monolithic blobs, Xet breaks content into chunks and deduplicates across them. The practical result: when you retrain a model and only 5% of weights change, only that 5% is re-uploaded. For a lab running frequent training iterations across multiple cloud providers, the savings compound quickly.
Pricing is also competitive. Buckets are priced at $12/TB/month at entry and $8/TB/month at volume, compared to AWS S3 Standard at $23/TB/month, and that is before Xet's deduplication reduces the effective billable footprint for overlapping artifacts. Egress and CDN are included at no extra cost.
Compute agnosticism as a competitive weapon
For Arcee, the deeper value proposition is freedom from cloud lock-in. Because Hugging Face Buckets sit outside any single cloud, Arcee is fully compute agnostic: train on any provider, spin it down, and models and data are right there waiting. This matters enormously for a small lab trying to chase the best GPU cluster pricing at any given moment. Spinning up on a cheaper provider mid-project no longer means migrating terabytes of checkpoints.
Here is what that workflow looks like in practice:
# Sync training checkpoints to HF Buckets from any cloud
hf buckets sync ./checkpoints hf://buckets/arcee-ai/trinity-run-42/checkpoints
# Pre-warm data near your compute region before a training run
# (keeps reads local, avoids cross-region egress)
from huggingface_hub import prewarm_bucket
prewarm_bucket("arcee-ai/trinity-datasets", region="us-east-1")
# When a checkpoint is ready to publish, promote to a versioned repo
from huggingface_hub import HfApi
api = HfApi()
api.copy_files(
"hf://buckets/arcee-ai/trinity-run-42/final-checkpoint",
"hf://models/arcee-ai/Trinity-Large"
)Buckets serve as staging areas for data processing workflows: process raw data, write intermediate outputs to a bucket, then promote the final artifact to a versioned dataset repository when the pipeline completes. The full pipeline, from raw data to published model, now lives in one place with consistent permissions and billing.
Why Hugging Face, and why now
The timing is not accidental. Arcee was among the early testers of Storage Buckets alongside Jasper, IBM, and PixAI, surfacing bugs and sharing feedback that directly shaped the feature. This partnership formalizes a relationship that was already operational. Arcee was not choosing between infrastructure providers; it was doubling down on one it had already validated.
The distribution argument is equally compelling. In 2025, Hugging Face grew to 13 million users, more than 2 million public models, and over 500,000 public datasets. The platform now serves 13 million users across 500,000 organizations, with 30%+ of the Fortune 500 maintaining verified accounts. For a lab whose mission is to get open-weight models deployed everywhere, that audience is irreplaceable.
Making Hugging Face the official home allows Arcee to meet 15 million ML engineers exactly where they already build. The Hub is not just a file server; it is the default discovery surface for the ML community. Hosting there means showing up in searches, leaderboards, and community discussions without any additional marketing effort.
Who wins, who loses, and what changes
The winners here are fairly clear:
- Arcee removes an entire category of operational overhead and gains compute flexibility, letting its 14-person research team focus entirely on model quality.
- Hugging Face lands a high-profile anchor tenant for its new Buckets product, validating the infrastructure pitch to other labs considering a similar consolidation.
- The open-source ML community benefits from Arcee committing to open releases on the Hub, including future generations of Trinity models and the datasets behind them.
- Enterprise users of Arcee models get a single, stable address for weights, with the Hub's access controls, versioning, and CDN included.
The competitive pressure falls on cloud storage incumbents. If a team's entire ML workflow, from first data pull through final publication, can live on the Hub with consistent permissions, billing, and tooling, the argument for maintaining separate S3 infrastructure weakens considerably. Every lab that follows Arcee's lead is one fewer AWS S3 or GCS customer for the messy middle of ML work.
There is also a subtler competitive dynamic. Critics may argue that Storage Buckets create another proprietary storage solution, potentially leading to vendor lock-in concerns for organizations already invested in cloud-native storage infrastructure. Arcee is explicitly trading one form of lock-in (cloud compute) for another (Hub storage), and betting that the developer network effects of the Hub make that trade worth it.
What comes next
Arcee has signaled that new Trinity models are already in development, and the partnership announcement hints at co-developed releases with the Hugging Face team. The partnership removes an entire category of operational overhead, with every ounce of energy freed going straight into data quality, training runs, and product experience.
For the broader industry, this deal is a proof point for a thesis Hugging Face has been building toward: that the Hub can be the full-stack home for an AI lab, not just its publishing endpoint. The intended workflow is to train into a Bucket, accumulate checkpoints, process data, and generate traces, then when something reaches publication quality, promote it from the Bucket into a versioned model or dataset repo. Hugging Face has roadmapped direct Bucket-to-repo transfer tooling to make this promotion step frictionless. If that roadmap lands, the Hub stops being a destination and becomes the operating layer for open AI development itself.