Aion Labs

Aion Labs: Aion-3.0

aion-labs/aion-3.0

Access Aion-3.0 from Aion Labs using Puter.js AI API.

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

puter.ai.chat("Explain quantum computing in simple terms", {
    model: "aion-labs/aion-3.0"
}).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: "aion-labs/aion-3.0"
        }).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="aion-labs/aion-3.0",
    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": "aion-labs/aion-3.0",
    "messages": [
      {"role": "user", "content": "Explain quantum computing in simple terms"}
    ]
  }'

Model Card

Aion-3.0 is a multi-model roleplaying and storytelling system from AionLabs, built on the GLM family of models. Rather than a single model generating the full response, it runs a collaborative generation process in which multiple specialized models each contribute, aimed at producing stronger narrative structure and more compelling tension and conflict.

It handles mature and darker themes with notable nuance, continuing the roleplay and narrative focus of AionLabs' earlier Aion models such as Aion-2.0 and Aion-RP.

The model supports a 131K-token context window with up to 32K tokens of output. Aion-3.0 is a good fit for developers building interactive fiction, character-driven chat, or other creative-writing tools where narrative depth and thematic nuance matter more than raw speed.

Context Window 131K

tokens

Max Output 33K

tokens

Input Cost $3

per million tokens

Output Cost $6

per million tokens

Release Date Jul 7, 2026

 

Model Playground

Try Aion-3.0 instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.

Chat aion-labs/aion-3.0
Aion Labs
Chat with Aion-3.0
Powered by Puter.js

More AI Models From Aion Labs

Find other Aion Labs models

Chat

Aion-3.0-Mini

Aion-3.0-Mini is a multi-model roleplaying and storytelling system from AionLabs, built on the DeepSeek family of models rather than the GLM base used in the full Aion-3.0. Like its larger sibling, it runs a collaborative generation process in which multiple specialized models each contribute to a response, aimed at producing stronger narrative structure and more compelling tension and conflict. It handles mature and darker themes with notable nuance, continuing the roleplay and narrative focus of AionLabs' earlier Aion models. The model supports a 131K-token context window with up to 32K tokens of output. Pricing is $0.70 per million input tokens and $1.40 per million output tokens, roughly a quarter of Aion-3.0's cost, making it a fit for developers who want the same collaborative-generation approach to character-driven chat and interactive fiction at a lower price point.

Chat

Aion-2.0

Aion 2.0 is a fine-tuned variant of DeepSeek V3.2, developed by AionLabs and optimized for immersive roleplaying and storytelling. It excels at generating narratives with natural tension, conflict, and dramatic stakes, and handles mature or darker themes with notable nuance. The model offers a 131K-token context window with up to 32K tokens of output, making it well-suited for long-form creative sessions. It supports function calling and streaming. On third-party benchmarks, it has scored 99.5% on general knowledge, 96% on mathematics, and 93.5% on coding tasks. Aion 2.0 is a strong pick for developers building interactive fiction, character-driven chat experiences, or creative writing tools where narrative depth and engagement matter more than raw speed.

Chat

Aion-RP 1.0 (8B)

Aion RP 1.0 8B is an uncensored roleplay and creative writing model from AionLabs, fine-tuned from the Llama 3.1 8B base model rather than an instruct variant. This base-model approach is designed to produce more natural and varied writing. It ranks highest in the character evaluation portion of RPBench-Auto, a roleplaying-specific benchmark derived from Arena-Hard-Auto where LLMs evaluate each other's responses. The model supports the full 131K context window and multi-turn conversations. Best suited for character-driven chat applications, interactive storytelling, and persona-consistent dialogue. A recommended temperature of 0.7 is advised, as higher values can degrade output quality.

Frequently Asked Questions

How do I use Aion-3.0?

You can access Aion-3.0 by Aion Labs 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 Aion-3.0 free?

Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Aion-3.0 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 Aion-3.0?
Aion-3.0 costs $3 per 1M input tokens and $6 per 1M output tokens.
Price per 1M tokens
Input$3
Output$6
Who created Aion-3.0?

Aion-3.0 was created by Aion Labs and released on Jul 7, 2026.

What is the context window of Aion-3.0?

Aion-3.0 supports a context window of 131K tokens. For reference, that is roughly equivalent to 262 pages of text.

What is the max output length of Aion-3.0?

Aion-3.0 can generate up to 33K tokens in a single response.

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

Yes — the Aion-3.0 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 Aion-3.0 to your app without worrying about API keys or setup.

Read the Docs View Tutorials