arcee-ai/trinity-large-thinkingTrinity Large Thinking (arcee-ai/trinity-large-thinking) is a afmoe 398.6B-parameter model from Arcee Ai with a 262,144-token context window and 262,144 max output tokens, priced at $0.22/1M input and $0.85/1M output tokens. Available via the haimaker.ai OpenAI-compatible API.
Trinity Large Thinking is a chat model by Arcee Ai. It has 398.6B parameters. It supports a 262K token context window. Supports function calling, reasoning.
Trinity-Large-Thinking is a reasoning-optimized variant of Arcee AI's Trinity-Large family — a 398B-parameter sparse Mixture-of-Experts (MoE) model with approximately 13B active parameters per token. Built on Trinity-Large-Base and post-trained with extended chain-of-thought reasoning and agentic RL, Trinity-Large-Thinking delivers state-of-the-art performance on agentic benchmarks while maintaining strong general capabilities.
Trinity-Large-Thinking generates explicit reasoning traces wrapped in blocks before producing its final response. This thinking process is critical to the model's performance — thinking tokens must be kept in context for multi-turn conversations and agentic loops to function correctly.
Try it at chat.arcee.ai
More details on the training of Trinity Large are available in the technical report.
... blocksThe Trinity Large family consists of four checkpoints:
Trinity-Large-Thinking shares the same sparse MoE architecture as Trinity-Large-Preview.
| 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 | Trinity-Large-Thinking | Opus-4.6 | GLM-5 | MiniMax-M2.7 | Kimi-K2.5 |
|---|---:|---:|---:|---:|---:|
| IFBench | 52.3 | 53.1 | 72.3 | 75.7 | 70.2 |
| GPQA-Diamond | 76.3 | 89.2 | 81.6 | 86.2 | 86.9 |
| Tau2-Airline | 88.0 | 82.0 | 80.5 | 80.0 | 80.0 |
| Tau2-Telecom | 94.7 | 92.1 | 98.2 | 84.8 | 95.9 |
| PinchBench | 91.9 | 93.3 | 86.4 | 89.8 | 84.8 |
| AIME25 | 96.3 | 99.8 | 93.3 | 80.0 | 96.3 |
| BCFLv4 | 70.1 | 77.0 | 70.8 | 70.6 | 68.3 |
| MMLU-Pro | 83.4 | 89.1 | 85.8 | 80.8 | 87.1 |
| SWE-bench Verified* | 63.2 | 75.6 | 72.8 | 75.4 | 70.8 |
*All models evaluated in mini-swe-agent-v2
Trinity-Large-Thinking produces reasoning traces inside blocks before generating its final response.
This means:
The model reasons internally before producing its response. When served via vLLM, the reasoning is separated into a dedicated field in the API response:
// API response structure
{
"message": {
"role": "assistant",
"reasoning_content": "The user wants flight information. I need to determine the date for next Tuesday, search for flights SFO → JFK, and filter by price < $300.",
"content": "\n",
"tool_calls": [{
"function": {
"name": "search_flights",
"arguments": "{\"origin\": \"SFO\", \"destination\": \"JFK\", \"date\": \"2026-04-07\", \"max_price\": 300}"
}
}]
}
}
When building multi-turn agentic loops, you must pass reasoning_content back on assistant messages in subsequent requests. The chat template reads this field and re-wraps it in tags during tokenization, maintaining the model's chain-of-thought across turns.
tool_calls). For best results, always preserve reasoning_content and use "" instead of null for content on tool-call turns.
For implementation details, pitfalls (reasoning vs reasoning_content), and Python/TypeScript examples, see Reasoning Traces.
Supported in vLLM 0.11.1+. For agentic use with both reasoning and tool calling:
vllm serve arcee-ai/Trinity-Large-Thinking \
--dtype bfloat16 \
--reasoning-parser deepseek_r1 \
--enable-auto-tool-choice \
--tool-call-parser qwen3_coder
Recommended inference settings: temperature=0.45–0.6, top_p=0.95, top_k=50
This configuration:
--reasoning-parser deepseek_r1 — Parses ... reasoning blocks and exposes them via the reasoning_content field in the API response--tool-call-parser qwen3_coder — Parses structured tool calls from the model output into the OpenAI-compatible tool_calls arrayfrom openai import OpenAI
client = OpenAI(api_key="EMPTY", base_url="http://localhost:8000/v1")
response = client.chat.completions.create(
model="arcee-ai/Trinity-Large-Thinking",
messages=[
{"role": "user", "content": "What's the weather like in Paris?"}
],
tools=[{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get current weather for a location",
"parameters": {
"type": "object",
"properties": {"location": {"type": "string"}},
"required": ["location"]
}
}
}],
)
Access reasoning (thinking) content
reasoning = response.choices[0].message.reasoning_content
Access final response or tool calls
content = response.choices[0].message.content
tool_calls = response.choices[0].message.tool_calls
The key pattern: after each turn, append the full assistant response (including reasoning) back to the message history, then append tool results, and send the updated history for the next turn.
import json
from openai import OpenAI
client = OpenAI(api_key="EMPTY", base_url="http://localhost:8000/v1")
MODEL = "arcee-ai/Trinity-Large-Thinking"
tools = [
{"type": "function", "function": {
"name": "get_customer_by_email",
"description": "Look up a customer by email.",
"parameters": {"type": "object", "properties": {"email": {"type": "string"}}, "required": ["email"]}
}},
{"type": "function", "function": {
"name": "cancel_subscription",
"description": "Cancel a subscription. Requires customer_id.",
"parameters": {"type": "object", "properties": {"customer_id": {"type": "string"}, "reason": {"type": "string"}}, "required": ["customer_id"]}
}}
]
def execute_tool(name, arguments):
"""Simulate tool execution — replace with real implementations."""
args = json.loads(arguments)
if name == "get_customer_by_email":
return json.dumps({"customer_id": "C2001", "name": "Jane Doe", "plan": "Premium", "status": "active"})
elif name == "cancel_subscription":
return json.dumps({"success": True, "message": f"Subscription cancelled for {args['customer_id']}"})
messages = [
{"role": "system", "content": "You are a helpful customer service agent."},
{"role": "user", "content": "I want to cancel my subscription. My email is jane@example.com"}
]
Agent loop
while True:
response = client.chat.completions.create(
model=MODEL, messages=messages, tools=tools,
tool_choice="auto", temperature=0, max_tokens=1000
)
msg = response.choices[0].message
# Build assistant message — PRESERVE reasoning_content
assistant_msg = {"role": "assistant", "content": msg.content}
if msg.reasoning_content:
assistant_msg["reasoning_content"] = msg.reasoning_content # ← critical for multi-turn
if msg.tool_calls:
assistant_msg["tool_calls"] = [
{"id": tc.id, "type": "function", "function": {"name": tc.function.name, "arguments": tc.function.arguments}}
for tc in msg.tool_calls
]
messages.append(assistant_msg)
# If no tool calls, model gave its final response — done
if not msg.tool_calls:
print(f"Final response: {msg.content}")
break
# Execute tool calls and append results
for tc in msg.tool_calls:
result = execute_tool(tc.function.name, tc.function.arguments)
print(f" Tool: {tc.function.name}({tc.function.arguments}) → {result}")
messages.append({"role": "tool", "tool_call_id": tc.id, "content": result})
Expected output:
Tool: get_customer_by_email({"email": "jane@example.com"}) → {"customer_id": "C2001", ...}
Tool: cancel_subscription({"customer_id": "C2001", ...}) → {"success": true, ...}
Final response: Your subscription has been cancelled successfully.
The critical line is:
assistant_msg["reasoning_content"] = msg.reasoning_content # ← pass reasoning_content back
The chat template re-wraps it in tags automatically. See Reasoning Traces for full details.
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-Thinking"
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=4096,
do_sample=True,
temperature=0.6,
top_k=50,
top_p=0.95
)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
Available on OpenRouter with full reasoning and tool calling support:
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-thinking",
"messages": [
{
"role": "user",
"content": "What are some fun things to do in New York?"
}
]
}'
Multi-turn with OpenRouter: OpenRouter returns reasoning in a reasoning_details object (their unified reasoning shape). For multi-turn conversations, pass reasoning_details back as-is on assistant messages in subsequent requests — OpenRouter handles model-specific upstream translation (for Trinity, this is sent as reasoning_content on assistant turns upstream). For debugging, enable echo to inspect the upstream API call:
{"debug": {"echo_upstream_body": true}}
See OpenRouter debugging docs for details.
Trinity-Large-Thinking is optimized for deployment as the reasoning backbone of AI agent systems. It has been evaluated and performs excellently with:
Trinity-Large-Thinking works as a drop-in brain for OpenClaw agents. Its native tool-calling format is compatible with OpenClaw's execution loop, and the extended reasoning enables reliable multi-step task completion — from email triage to code generation to meeting scheduling. Our 91.9% PinchBench score reflects real-world OpenClaw task performance.
Deploying for OpenClaw users: OpenClaw preserves full assistant turns across steps. Ensurereasoning_content is forwarded on assistant messages in subsequent turns, and keep content non-null (empty string "" is fine on tool-call turns). See Reasoning Traces for full integration details.
Compatible with the Hermes Agent framework from Nous Research. Trinity-Large-Thinking's reasoning traces pair naturally with Hermes's skill-learning loop — the model's explicit chain-of-thought makes skill extraction more reliable, and its strong tool-calling capabilities integrate directly via the Hermes tool-use protocol.
For custom implementations, the key integration pattern is:
reasoning_content + content + tool_callsImportant: Step 4 must include
reasoning_contenton the assistant message. The chat template reads this field and re-wraps it intags during tokenization. Omitting it degrades multi-step performance — see Reasoning Traces for full details....
Trinity-Large-Thinking is released under the Apache License, Version 2.0.
If you use this model, please cite:
@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 | 262,144 tokens |
| Max Output | 262,144 tokens |
| Function Calling | Supported |
| Vision | - |
| Reasoning | Supported |
| 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-thinking",
messages=[
{"role": "user", "content": "Hello, how are you?"}
],
)
print(response.choices[0].message.content)Trinity Large Thinking (arcee-ai/trinity-large-thinking) has a 262,144-token context window and supports up to 262,144 output tokens per request.
Trinity Large Thinking is priced at $0.22 per 1M input tokens and $0.85 per 1M output tokens when accessed via the haimaker.ai OpenAI-compatible API.
Trinity Large Thinking supports function calling, reasoning.
Send requests to https://api.haimaker.ai/v1/chat/completions with model "arcee-ai/trinity-large-thinking" using any OpenAI-compatible SDK. Authentication uses a Bearer API key from https://app.haimaker.ai.
OpenAI-compatible endpoint. Start building in minutes.