Claude Opus 4.7 is on Cencori

Claude 4.7 Opus is live on Cencori.
Anthropic’s latest flagship model arrived today, April 16, 2026, and it’s a powerhouse for agentic workflows. While earlier versions laid the groundwork for autonomy, Opus 4.7 is designed specifically for complex, long-running engineering tasks that require high rigor and minimal supervision.
As of today, you can target claude-opus-4.7 across the entire Cencori stack.
What's New in 4.7?
1. High-Resolution Vision (3.75MP)
Opus 4.7 features a massive upgrade to its vision capabilities, processing images at up to 3.75MP—a 3x increase over the previous version. This allows for significantly higher precision when analyzing dense technical diagrams, UI mockups, and complex spatial data.
2. xhigh Effort Control
Anthropic has introduced a new effort tier for developers who need maximum reasoning at the cost of slight latency. By setting your request to xhigh, you unlock a deeper reflection layer for the model to "double-check" its logic before returning a result—perfect for mission-critical security or architecture reviews.
3. Task Budgets (Public Beta)
For the first time, you can now set Task Budgets to guide token spend across long-running agent loops. This allows Cencori users to prioritize high-value work and prevent runaway costs in autonomous agent runs.
4. Agentic Software Engineering
Internal benchmarks show a substantial leap in "rigor" for coding tasks. Opus 4.7 is better at maintaining context through a file-system-based memory model, making it the most capable LLM for software engineering to date.
Pricing & Specs
- Input Tokens: $5.00 / million
- Output Tokens: $25.00 / million
- Tokenizer: Updated (look for slight changes in token counts for existing prompts)
- Context Handling: Enhanced file-system memory integration
Using Opus 4.7 in Cencori
We've updated our provider config to handle the new claude-opus-4.7 identifier. You can use it today via the SDK or by selecting it in the Project Dashboard.
SDK Example
import { cencori } from '@cencori/sdk';
const agent = await cencori.agents.create({
name: 'Senior Architect',
model: 'claude-opus-4.7',
metadata: {
effort: 'xhigh', // New effort control
budget: 500000 // New task budget
}
});
const analysis = await agent.run({
input: 'Perform a deep security audit of the /app/api directory.'
});Claude 4.7 Opus is available now for all Cencori customers. Check your Model Registry to enable it for your projects.