Back to ModelsBack to Models
Trinity Large Thinking
Arcee AI32/ 57
Intelligence Score
Intelligence
32
#79 of 212 (top 37%)
Speed
141 tok/s
#49 of 141
Price
$0.40
per M tokens
#50 cheapest of 142
Context Window
512K
tokens
Latency: 1ms (#29)
Score Breakdown
Quality Score53%
Speed Score18%
Cost Score96%
Similar Models
Qwen3.5 9B
Alibaba
32intelligence
Gemma 4 31B
Google
32intelligence
K-EXAONE
LG AI Research
32intelligence
Grok 3 mini Reasoning (high)
xAI
32intelligence
Nova 2.0 Pro Preview (low)
Amazon
32intelligence
Use This Model
Claude Code
claude --model trinity-large-thinkingAPI (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",
});