Apodex: Apodex 1.1
apodex/apodex-1.1
Access Apodex 1.1 from Apodex 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: "apodex/apodex-1.1"
}).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: "apodex/apodex-1.1"
}).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="apodex/apodex-1.1",
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": "apodex/apodex-1.1",
"messages": [
{"role": "user", "content": "Explain quantum computing in simple terms"}
]
}'
Model Card
Apodex 1.1 is an agentic AI model from Apodex, built for long-horizon professional work in law, finance, and scientific research. It pairs reasoning with task execution, working directly with files, code, and search tools rather than only generating text.
The model uses two training approaches. Environment Scaling expands the diversity of executable file, search, and code environments. Agentic Coordination Scaling trains it to decompose long tasks, delegate parallel work to subagents, and integrate results. A runtime called AgentOS tracks tool calls, file state, and task progress across a session, and lets a user step in mid-task to redirect the work.
On Apodex's own benchmarks, Apodex 1.1 with its Agent Team setup scored 38.5 on APEX-Agents, 78.8 on GDPVal, 54.3 on FrontierFinance, and 63.3 on FrontierScience-Research, more than double its predecessor's APEX-Agents score of 16.5. It has a 256K token context window and supports text, images, PDFs, and CSV/Excel input.
Context Window 256K
tokens
Max Output 256K
tokens
Input Cost $0.24
per million tokens
Output Cost $2.4
per million tokens
Input text, image, pdf, file
modalities
Release Date Aug 24, 2026
Model Playground
Try Apodex 1.1 instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.
More AI Models From Apodex
Frequently Asked Questions
You can access Apodex 1.1 by Apodex 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.
Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Apodex 1.1 to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.
| Price per 1M tokens | |
|---|---|
| Input | $0.24 |
| Output | $2.4 |
Apodex 1.1 was created by Apodex and released on Aug 24, 2026.
Apodex 1.1 supports a context window of 256K tokens. For reference, that is roughly equivalent to 512 pages of text.
Apodex 1.1 can generate up to 256K tokens in a single response.
Apodex 1.1 accepts the following input types: text, image, pdf, file. It produces: text.
Yes — the Apodex 1.1 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 Apodex 1.1 to your app without worrying about API keys or setup.
Read the Docs View Tutorials