Back to Models

Trinity Large Thinking

![Arcee AI](https://artificialanalysis.ai/img/logos/arcee_small.svg)Arcee AI
32/ 57

Intelligence Score

Intelligence

32

#73 of 203 (top 36%)

Speed

117 tok/s

#62 of 131

Price

$0.40

per M tokens

#49 cheapest of 136

Context Window

512K

tokens

Latency: 1ms (#38)

Score Breakdown

Quality Score53%
Speed Score17%
Cost Score96%

Use This Model

Claude Code

claude --model trinity-large-thinking

API (cURL)

curl https://openrouter.ai/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -d '{
    "model": "trinity-large-thinking",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Vercel AI SDK

import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";

const { text } = await generateText({
  model: openrouter("trinity-large-thinking"),
  prompt: "Hello",
});
Back to Models