Trinity Mini

Other chatreasoningtool_use

API ID: arcee-ai/trinity-mini-20251201

Input Price
$0.04
/1M tokens
Output Price
$0.15
/1M tokens

About Trinity Mini

Trinity Mini is Arcee AI's compact model, designed for efficient enterprise deployment. The model delivers good performance with minimal resource requirements. Trinity Mini is ideal for cost-sensitive enterprise applications. For organizations seeking efficient enterprise AI, Trinity Mini offers practical capability.

๐Ÿ’ฐ
Price Ranking
#317 lowest price among 599 Chat models

Model Specifications

Context Length
131k
Max Output
131k
Release Date
2025-12-01
Capabilities
chat reasoning tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)
  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.07
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$2.02
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$2.81
/month
500 analyses/day, ~2k tokens each

Other Model Lineup

Compare all models from Other to find the best fit

Model Input Output Context Capabilities
Trinity Mini Current Free Free 131k chat reasoning tool_use
Sarvam-M Free Free 33k chat
Caller Large Free Free 33k chat
Arcee Blitz Free Free 33k chat
InternVL3 14B Free Free 32k chat vision
InternVL3 2B Free Free 32k chat vision

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Mistral Pixtral 12B
Input: $0.10
Output: $0.10
Context: 33k
Zhipu AI GLM 4 32B
Input: $0.10
Output: $0.10
Context: 33k
Mistral Ministral 8B
Input: $0.10
Output: $0.10
Context: 131k
Mistral Ministral 3 3B 2512
Input: $0.10
Output: $0.10
Context: 131k

๐Ÿš€ Quick Start

Get started with Trinity Mini API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="arcee-ai/trinity-mini-20251201",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)