Arcee AI: Trinity Large Thinking

Access Trinity Large Thinking from Arcee AI using Puter.js AI API.

Get Started

Model Card

Trinity Large Thinking is a reasoning-optimized open-source model from Arcee AI, built on a 398B-parameter sparse Mixture-of-Experts architecture with approximately 13B active parameters per token.

It uses extended chain-of-thought reasoning via explicit thinking traces before generating responses. The model is purpose-built for agentic workloads — multi-turn tool calling, long-horizon planning, and stable behavior across extended agent loops.

On agentic benchmarks, it scores 94.7% on τ²-Bench and 91.9% on PinchBench, ranking #2 overall on PinchBench behind only Claude Opus 4.6 — at roughly 96% lower cost. It supports a 262K-token context window with up to 80K output tokens.

Released under Apache 2.0, it's a strong pick for developers running cost-sensitive agent pipelines that need reliable tool use and instruction following at frontier-level quality.

Context Window 262K

tokens

Max Output 80K

tokens

Input Cost $0.25

per million tokens

Output Cost $0.9

per million tokens

Release Date Apr 1, 2026

 

API Usage Example

Add Trinity Large Thinking to your app with just a few lines of code.
No backend, no configuration required.

// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';

puter.ai.chat("Explain quantum computing in simple terms", {
    model: "arcee-ai/trinity-large-thinking"
}).then(response => {
    document.body.innerHTML = response.message.content;
});
<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
        puter.ai.chat("Explain quantum computing in simple terms", {
            model: "arcee-ai/trinity-large-thinking"
        }).then(response => {
            document.body.innerHTML = response.message.content;
        });
    </script>
</body>
</html>
# pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://api.puter.com/puterai/openai/v1/",
    api_key="YOUR_PUTER_AUTH_TOKEN",
)

response = client.chat.completions.create(
    model="arcee-ai/trinity-large-thinking",
    messages=[
        {"role": "user", "content": "Explain quantum computing in simple terms"}
    ],
)

print(response.choices[0].message.content)
curl https://api.puter.com/puterai/openai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_PUTER_AUTH_TOKEN" \
  -d '{
    "model": "arcee-ai/trinity-large-thinking",
    "messages": [
      {"role": "user", "content": "Explain quantum computing in simple terms"}
    ]
  }'

View full documentation →

Frequently Asked Questions

How do I use Trinity Large Thinking?

You can access Trinity Large Thinking by Arcee AI through Puter.js AI API. Include the library in your web app or Node.js project and start making calls with just a few lines of JavaScript — no backend and no configuration required. You can also use it with Python or cURL via Puter's OpenAI-compatible API.

Is Trinity Large Thinking free?

Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Trinity Large Thinking to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.

What is the pricing for Trinity Large Thinking?
Pricing for Trinity Large Thinking is based on the number of input and output tokens used per request.
Price per 1M tokens
Input$0.25
Output$0.9
Who created Trinity Large Thinking?

Trinity Large Thinking was created by Arcee AI and released on Apr 1, 2026.

What is the context window of Trinity Large Thinking?

Trinity Large Thinking supports a context window of 262K tokens. For reference, that is roughly equivalent to 524 pages of text.

What is the max output length of Trinity Large Thinking?

Trinity Large Thinking can generate up to 80K tokens in a single response.

Does it work with React / Vue / Vanilla JS / Node / etc.?

Yes — the Trinity Large Thinking API works with any JavaScript framework, Node.js, or plain HTML through Puter.js. Just include the library and start building. See the documentation for more details.

Get started with Puter.js

Add Trinity Large Thinking to your app without worrying about API keys or setup.

Read the Docs View Tutorials