Instructions to use arcee-ai/Trinity-Large-Preview-FP8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use arcee-ai/Trinity-Large-Preview-FP8 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="arcee-ai/Trinity-Large-Preview-FP8", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("arcee-ai/Trinity-Large-Preview-FP8", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("arcee-ai/Trinity-Large-Preview-FP8", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use arcee-ai/Trinity-Large-Preview-FP8 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "arcee-ai/Trinity-Large-Preview-FP8" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "arcee-ai/Trinity-Large-Preview-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/arcee-ai/Trinity-Large-Preview-FP8
- SGLang
How to use arcee-ai/Trinity-Large-Preview-FP8 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "arcee-ai/Trinity-Large-Preview-FP8" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "arcee-ai/Trinity-Large-Preview-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "arcee-ai/Trinity-Large-Preview-FP8" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "arcee-ai/Trinity-Large-Preview-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use arcee-ai/Trinity-Large-Preview-FP8 with Docker Model Runner:
docker model run hf.co/arcee-ai/Trinity-Large-Preview-FP8
| license: other | |
| language: | |
| - en | |
| - es | |
| - fr | |
| - de | |
| - it | |
| - pt | |
| - ru | |
| - ar | |
| - hi | |
| - ko | |
| - zh | |
| library_name: transformers | |
| base_model: | |
| - arcee-ai/Trinity-Large-Preview | |
| base_model_relation: quantized | |
| license_link: LICENSE | |
| license_name: openmdw-1.1 | |
| <!-- markdownlint-disable first-line-h1 --> | |
| <!-- markdownlint-disable html --> | |
| <!-- markdownlint-disable no-duplicate-header --> | |
| <div align="center"> | |
| <picture> | |
| <img | |
| src="https://cdn-uploads.huggingface.co/production/uploads/6435718aaaef013d1aec3b8b/i-v1KyAMOW_mgVGeic9WJ.png" | |
| alt="Arcee Trinity Large" | |
| style="max-width: 100%; height: auto;" | |
| > | |
| </picture> | |
| </div> | |
| <hr> | |
| # Trinity-Large-Preview-FP8 | |
| ## Introduction | |
| Trinity-Large-Preview is a 398B-parameter sparse Mixture-of-Experts (MoE) model with approximately 13B active parameters per token. It is the largest model in Arcee AI's Trinity family, trained on more than 17 trillion tokens and delivering frontier-level performance with strong long-context comprehension. | |
| Trinity-Large-Preview is a lightly post-trained model based on Trinity-Large-Base. | |
| **This repository contains the FP8 quantized weights of Trinity-Large-Preview.** | |
| Try it at [chat.arcee.ai](http://chat.arcee.ai/) | |
| More details on the training of Trinity Large are available in the [technical report](https://github.com/arcee-ai/trinity-large-tech-report/). | |
| ## Model Variants | |
| The Trinity Large family consists of three checkpoints from the same training run: | |
| - **[Trinity-Large-Preview](https://huggingface.co/arcee-ai/Trinity-Large-Preview)**: Lightly post-trained, chat-ready model undergoing active RL | |
| - **[Trinity-Large-TrueBase](https://huggingface.co/arcee-ai/Trinity-Large-TrueBase)**: 10T-token pre-anneal pretraining checkpoint | |
| - **[Trinity-Large-Base](https://huggingface.co/arcee-ai/Trinity-Large-Base)**: Full 17T-token pretrained foundation model with mid-training anneals | |
| ## Architecture | |
| Trinity-Large-Preview uses a sparse MoE configuration designed to maximize efficiency while maintaining large-scale capacity. | |
| | Hyperparameter | Value | | |
| |:---|:---:| | |
| | Total parameters | ~398B | | |
| | Active parameters per token | ~13B | | |
| | Experts | 256 (1 shared) | | |
| | Active experts | 4 | | |
| | Routing strategy | 4-of-256 (1.56% sparsity) | | |
| | Dense layers | 6 | | |
| | Pretraining context length | 8,192 | | |
| | Context length after extension | 512k | | |
| | Architecture | Sparse MoE (AfmoeForCausalLM) | | |
| ## Benchmarks | |
| | Benchmark | Llama 4 Maverick | Trinity-Large Preview | | |
| |-----------|------------------|----------------------| | |
| | MMLU | 85.5 | 87.2 | | |
| | MMLU-Pro | 80.5 | 75.2 | | |
| | GPQA-Diamond | 69.8 | 63.3 | | |
| | AIME 2025 | 19.3 | 24.0 | | |
| ## Training Configuration | |
| ### Pretraining | |
| - Training tokens: 17 trillion | |
| - Data partner: [Datology](https://www.datologyai.com/) | |
| <div align="center"> | |
| <picture> | |
| <img src="https://cdn-uploads.huggingface.co/production/uploads/6435718aaaef013d1aec3b8b/sSVjGNHfrJKmQ6w8I18ek.png" style="background-color:ghostwhite;padding:5px;" width="17%" alt="Powered by Datology"> | |
| </picture> | |
| </div> | |
| ## Posttraining | |
| - This checkpoint was instruction tuned on 20B tokens. | |
| ### Infrastructure | |
| - Hardware: 2,048 NVIDIA B300 GPUs | |
| - Parallelism: HSDP + Expert Parallelism | |
| - Compute partner: [Prime Intellect](https://www.primeintellect.ai/) | |
| <div align="center"> | |
| <picture> | |
| <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/61e020e4a343274bb132e138/H2mcdPRWtl4iKLd-OYYBc.jpeg" style="background-color:ghostwhite;padding:5px;" width="17%" alt="Powered by Prime Intellect"> | |
| </picture> | |
| </div> | |
| ## Usage | |
| ### Running our model | |
| - [Transformers](https://huggingface.co/arcee-ai/Trinity-Large-Preview#transformers) | |
| - [VLLM](https://huggingface.co/arcee-ai/Trinity-Large-Preview#vllm) | |
| - [llama.cpp](https://huggingface.co/arcee-ai/Trinity-Large-Preview#llamacpp) | |
| - [LM Studio](https://huggingface.co/arcee-ai/Trinity-Large-Preview#lm-studio) | |
| - [API](https://huggingface.co/arcee-ai/Trinity-Large-Preview#api) | |
| ### Recommended settings | |
| * temperature: | |
| * top_k: | |
| * top_p: | |
| * min_p: | |
| ### Transformers | |
| Use the `main` transformers branch or pass `trust_remote_code=True` with a released version. | |
| ```python | |
| from transformers import AutoTokenizer, AutoModelForCausalLM | |
| import torch | |
| model_id = "arcee-ai/Trinity-Large-Preview-FP8" | |
| tokenizer = AutoTokenizer.from_pretrained(model_id) | |
| model = AutoModelForCausalLM.from_pretrained( | |
| model_id, | |
| device_map="auto", | |
| trust_remote_code=True | |
| ) | |
| messages = [ | |
| {"role": "user", "content": "Who are you?"}, | |
| ] | |
| input_ids = tokenizer.apply_chat_template( | |
| messages, | |
| add_generation_prompt=True, | |
| return_tensors="pt" | |
| ).to(model.device) | |
| outputs = model.generate( | |
| input_ids, | |
| max_new_tokens=256, | |
| do_sample=True, | |
| temperature=0.8, | |
| top_k=50, | |
| top_p=0.8 | |
| ) | |
| response = tokenizer.decode(outputs[0], skip_special_tokens=True) | |
| print(response) | |
| ``` | |
| ### VLLM | |
| Supported in VLLM release 0.11.1+ | |
| ```bash | |
| vllm serve arcee-ai/Trinity-Large-Preview-FP8 \ | |
| --enable-auto-tool-choice \ | |
| --tool-call-parser hermes | |
| ``` | |
| ### API | |
| Available on OpenRouter: | |
| ```bash | |
| curl -X POST "https://openrouter.ai/v1/chat/completions" \ | |
| -H "Authorization: Bearer $OPENROUTER_API_KEY" \ | |
| -H "Content-Type: application/json" \ | |
| -d '{ | |
| "model": "arcee-ai/trinity-large-preview", | |
| "messages": [ | |
| { | |
| "role": "user", | |
| "content": "What are some fun things to do in New York?" | |
| } | |
| ] | |
| }' | |
| ``` | |
| ## License | |
| Trinity-Large-Preview is released under the OpenMDW License, version 1.1 (OpenMDW-1.1). | |
| ## Citation | |
| ```bibtex | |
| @misc{arcee_trinity_large_preview, | |
| title = {Trinity-Large-Preview}, | |
| author = {{Arcee AI}}, | |
| year = {2026}, | |
| note = {398B sparse MoE model trained on 17T tokens} | |
| } | |
| ``` |