arcee-ai/trinity-large-previewTrinity Large Preview (arcee-ai/trinity-large-preview) is a afmoe 398.6B-parameter model from Arcee Ai with a 131,000-token context window and 131,000 max output tokens, priced at $0.15/1M input and $0.45/1M output tokens. Available via the haimaker.ai OpenAI-compatible API.
Trinity Large Preview is a chat model by Arcee Ai. It has 398.6B parameters. It supports a 131K token context window. Supports function calling.
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.
Try it at chat.arcee.ai
More details on the training of Trinity Large are available in the technical report.
The Trinity Large family consists of three checkpoints from the same training run:
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) |
| 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 |
Use the main transformers branch or pass trust_remote_code=True with a released version.
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model_id = "arcee-ai/Trinity-Large-Preview"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
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)
Supported in VLLM release 0.11.1+
vllm serve arcee-ai/Trinity-Large-Preview \
--dtype bfloat16 \
--enable-auto-tool-choice \
--tool-call-parser hermes
Supported in llama.cpp release b7061+
llama-server -hf arcee-ai/Trinity-Large-Preview-GGUF:q4_k_m
Supported in the latest LM Studio runtime. Search for arcee-ai/Trinity-Large-Preview-GGUF in Model Search.
Available on OpenRouter:
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?"
}
]
}'
Trinity-Large-Preview is released under the Apache License, Version 2.0.
If you use this model, please cite:
```bibtex
@misc{singh2026arceetrinity,
title = {Arcee Trinity Large Technical Report},
author = {Varun Singh and Lucas Krauss and Sami Jaghouar and Matej Sirovatka and Charles Goddard and Fares Obied and Jack Min Ong and Jannik Straube and Fern and Aria Harley and Conner Stewart and Colin Kealty and Maziyar Panahi and Simon Kirsten and Anushka Deshpande and Anneketh Vij and Arthur Bresnu and Pranav Veldurthi and Raghav Ravishankar and Hardik Bishnoi and DatologyAI Team and Arcee AI Team and Prime Intellect Team and Mark McQuade and Johannes Hagemann and Lucas Atkins},
year = {2026},
eprint = {2602.17004},
archivePrefix= {arXiv},
primaryClass = {cs.LG},
doi = {10.48550/arXiv.2602.17004},
url = {https://arxiv.org/abs/2602.17004}
}
| Mode | chat |
| Context Window | 131,000 tokens |
| Max Output | 131,000 tokens |
| Function Calling | Supported |
| Vision | - |
| Reasoning | - |
| Web Search | - |
| Url Context | - |
| Architecture | AfmoeForCausalLM |
| Model Type | afmoe |
| Base Model | arcee-ai/Trinity-Large-Base |
| Languages | en, es, fr, de, it, pt, ru, ar, hi, ko, zh |
| Library | transformers |
from openai import OpenAI
client = OpenAI(
base_url="https://api.haimaker.ai/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="arcee-ai/trinity-large-preview",
messages=[
{"role": "user", "content": "Hello, how are you?"}
],
)
print(response.choices[0].message.content)Trinity Large Preview (arcee-ai/trinity-large-preview) has a 131,000-token context window and supports up to 131,000 output tokens per request.
Trinity Large Preview is priced at $0.15 per 1M input tokens and $0.45 per 1M output tokens when accessed via the haimaker.ai OpenAI-compatible API.
Trinity Large Preview supports function calling.
Send requests to https://api.haimaker.ai/v1/chat/completions with model "arcee-ai/trinity-large-preview" using any OpenAI-compatible SDK. Authentication uses a Bearer API key from https://app.haimaker.ai.
OpenAI-compatible endpoint. Start building in minutes.