Blog

Arcee AI Trinity Mini Is Now Available in Puter.js

On this page

Puter.js now supports Trinity Mini, Arcee AI's efficient reasoning model. Add it to your application for free without any API keys.

What is Trinity Mini?

Trinity Mini is Arcee AI's reasoning model, engineered for efficient reasoning thanks to its smaller parameter size (26B).

Available Models

Puter.js provides access to several other Arcee AI models, each optimized for different use cases:

  1. Virtuoso Large - General-purpose LLM for everyday use such as Q&A and writing, while still maintaining strong reasoning performance

  2. Maestro Reasoning - Flagship reasoning model that excels at complex analysis

  3. Spotlight - Optimized for visual tasks such as image-to-text analysis and multimodal conversation

  4. Coder Large - Coding language model with 32K context window that understands more than 30 programming languages

Examples

Efficient Reasoning with Trinity Mini

puter.ai.chat("Debug this logic: If I have 3 apples and give away 5, how many do I have?",
    { model: "openrouter:arcee-ai/trinity-mini", stream: true }
)

Basic Chat with Virtuoso Large

puter.ai.chat("Explain the concept of quantum computing in simple terms",
    { model: "openrouter:arcee-ai/virtuoso-large" }
)

Complex Reasoning with Maestro Reasoning

puter.ai.chat("Analyze the trade-offs between microservices and monolithic architecture for a startup with 5 developers",
    { model: "openrouter:arcee-ai/maestro-reasoning", stream: true }
)

Image Analysis with Spotlight

puter.ai.chat("What do you see in this image?",
    "https://assets.puter.site/doge.jpeg",
    { model: "openrouter:arcee-ai/spotlight" }
)

Code Generation with Coder Large

puter.ai.chat("Write a Python function that implements binary search on a sorted array",
    { model: "openrouter:arcee-ai/coder-large" }
)

Get Started Now

Just add one script tag to your HTML:

<script src="https://js.puter.com/v2/"></script>

No API keys or infrastructure setup needed. Start building with Arcee AI models immediately.

Learn more:

Free, Serverless AI and Cloud

Start creating powerful web applications with Puter.js in seconds!

Get Started Now

Read the Docs Try the Playground