Exam guide·7 min read·1 September 2026

Claude AI Models for Partner Architects: Exam and Economics Guide

Master the claude ai models tier structure to pass the CCAR-F exam and build partner services with sustainable economics in the Claude Partner Network.

By Solomon Udoh · AI Architect & Certification Lead

Claude AI Models for Partner Architects: Exam and Economics Guide

The claude ai models family gives architects a deliberate set of capability tiers, and choosing the wrong one for a given task is not an academic error. It shows up as compressed partner margins, missed latency SLAs, and services that fail to scale profitably. The Claude Certified Architect, Foundations exam (CCAR-F) tests exactly this judgement, not as trivia about model names, but through scenario-based items that ask you to defend routing decisions under real production constraints.

As of 3 June 2026, more than 10,000 individuals hold a Claude certification. The architects who have passed the CCAR-F consistently demonstrate one competency above others: the ability to match model capability to task complexity, then anchor that matching logic in economics.

Which Claude AI models form the current tier structure?

The Claude model family is organised around three primary capability bands, each trading latency and token cost for reasoning depth. Per Anthropic's model documentation, the current lineup includes Haiku 4.5, Sonnet 5, and Opus 5, with Fable 5 as a narrative-optimised variant for structured storytelling tasks.

Model IDPrimary strengthRepresentative use case
claude-haiku-4-5-20251001Speed and volumeClassification, extraction, lightweight summarisation
claude-sonnet-5Balanced general-purpose reasoningCode review, customer-facing dialogue, structured analysis
claude-opus-5Maximum intelligence and depthMulti-step contract analysis, complex architecture design
claude-fable-5Narrative coherenceLong-form creative generation, structured storytelling

The CCAR-F does not ask you to recite these identifiers. It presents a scenario, for instance a partner pipeline processing 200,000 document-classification events per day with a 150ms latency requirement, and asks which tier satisfies both the SLA and a sustainable cost structure. The correct answer requires understanding capability, latency characteristics, and economics simultaneously.

How does model tier choice affect partner economics and margin?

For Claude Partner Network members, model selection is a direct input to gross margin on managed services. A partner routing every task through Opus for maximum accuracy will face unit economics that erode under price pressure from competitors who route more intelligently. A partner who sends classification calls to Haiku and reserves Sonnet or Opus for synthesis and judgement-intensive work retains the margin to reinvest in onboarding, account management, and service expansion.

The $100M Claude Partner Network programme rewards partners across the full customer journey, not only for initial deployment. Partners with healthy lifetime-value numbers tend to build routing architectures that keep API costs proportionate to task complexity. Three levers matter most:

  1. Cost-per-request alignment: match tier to task stakes, not to the maximum available capability.
  2. Latency budgeting: user-facing real-time responses and overnight batch pipelines have different latency tolerances; the tier selection should reflect this difference explicitly.
  3. Services layer insulation: implementation, onboarding, and managed-service revenue sits above the API layer. Complex customisation work that does not run at production scale justifies Sonnet or Opus; routine inference at scale does not.

Where do claude ai models appear on the CCAR-F exam?

Two domains account for the bulk of model-selection judgement on the exam. Domain 1, Agentic Architecture and Orchestration, carries 27% of the exam weight. Within it, the exam tests how a coordinator agent selects subagents dynamically based on task type and consequence. The concept of coordinator dynamic subagent selection covers exactly this: a coordinator that reads task metadata and routes to an appropriately capable subagent, implicitly choosing a model tier along the way.

Domain 4, Prompt Engineering and Structured Output, carries 20%. Here the exam tests whether you understand that a prompt optimised for Opus, with elaborate chain-of-thought scaffolding and long persona descriptions, can degrade performance on Haiku, where brevity and explicit instruction outperform elaboration. Together, Domains 1 and 4 account for 47% of CCAR-F weight, and both demand model-selection judgement.

The exam consistently rewards deterministic solutions over probabilistic ones when stakes are high, proportionate fixes, and root-cause tracing.

AI Skill Certs , CCAR-F Facts Block

Domain 5, Context Management and Reliability, carries 15%. Context-window capacity varies across tiers, and architects who understand how that variation affects chunking strategy, summarisation frequency, and retrieval design will recognise context-management failures that are actually model-tier mismatches in disguise.

What routing patterns does the CCAR-F reward?

The exam rewards deterministic routing for high-stakes, irreversible decisions. When a scenario describes a pipeline where a misclassification results in a regulatory filing error, the correct answer will involve a pre-configured tier assignment for that task class, not a model-driven runtime decision about which model to call.

The model-driven vs pre-configured decision-making framework captures the underlying principle. Low-stakes, reversible routing can safely be model-driven. High-stakes, irreversible routing should be locked in configuration. A defensible implementation in Python:

python
HIGH_STAKES_TASKS = {"contract_review", "regulatory_filing", "security_audit"}
LIGHTWEIGHT_TASKS = {"classification", "extraction", "tagging", "summarisation"}
def select_model(task_type: str, reversible: bool) -> str:
if task_type in HIGH_STAKES_TASKS or not reversible:
return "claude-opus-5"
if task_type in LIGHTWEIGHT_TASKS:
return "claude-haiku-4-5-20251001"
return "claude-sonnet-5"

This pattern does not ask a model to decide which model to use. That indirection adds latency, cost, and an additional failure mode. A CCAR-F scenario will typically contrast this deterministic approach with a meta-routing agent pattern and ask which is appropriate for a compliance-sensitive context. The correct answer is the deterministic pattern.

The high-stakes enforcement decision rule makes this explicit: when the cost of a wrong routing decision exceeds the overhead of a fixed policy, lock the policy in code.

How does prompt design change across claude ai models?

Prompt strategies are not model-agnostic. A prompt engineered on Opus, with a lengthy role description, explicit chain-of-thought scaffolding, and multi-paragraph task framing, will often underperform on Haiku. Haiku processes instructions more literally and responds better to fewer, crisper directives. Architects who do not adjust prompts when moving tasks between tiers introduce silent accuracy regressions that are difficult to diagnose in production.

The prompt engineering domain on CCAR-F tests whether you can diagnose a broken pipeline and identify whether the root cause is model capability, prompt structure, or routing logic. A common scenario: an agent performs well in a test environment against Opus but degrades in production, where Haiku handles the same task for cost reasons. The correct diagnosis is a prompt-tier mismatch, not a model defect.

Structured output schema design also behaves differently across tiers. Opus tolerates more ambiguous schemas and infers missing constraints; Haiku benefits from fully specified schemas with explicit field descriptions and tight type constraints. Architects who conflate these behaviours ship pipelines that pass test suites and fail in production.

How does model selection differ between the CCAR-F and CCDV-F exams?

The CCDV-F (Claude Certified Developer, Foundations) gives model selection its own explicit domain: Domain 5, Model Selection and Optimisation, carrying 16.8% of the 53-item exam. That exam tests direct API usage patterns, cost estimation, and framework integration at a code level.

The CCAR-F treats model selection as an implicit cross-cutting concern rather than a named domain. It appears in agentic routing scenarios (Domain 1, 27%), in prompt adaptation questions (Domain 4, 20%), and in context-management reliability questions (Domain 5, 15%). Architects must apply model-selection judgement without a clear signal about which domain they are operating in.

ExamModel selection treatmentWhere it appears
CCAR-F (Architect Foundations, $125)Implicit, cross-cuttingDomains 1, 4, and 5 (27%, 20%, 15%)
CCDV-F (Developer Foundations, $125)Explicit standalone domainDomain 5 (16.8% of 53-item exam)

Both exams cost $125 per attempt and require a scaled score of 720 out of 1000 to pass. The credential from each track is valid for 12 months from the date of award. AI Skill Certs offers adaptive prep and practice exams for both tracks, each scored 100 to 1000 with 720 as the passing bar.

How should architects prepare for model-selection questions on the CCAR-F?

Study model selection in the context of the scenarios the exam actually presents, not in isolation. The CCAR-F does not ask "which model is fastest?" It asks "given a partner building a high-volume, low-stakes pipeline with a strict latency SLA, which tier and routing logic satisfies all constraints simultaneously?" That is a multi-variable judgement call, and it is exactly the kind of reasoning the agentic architecture concepts library develops.

Concrete preparation steps:

  1. Map each of the five CCAR-F domains to the model-selection judgements they embed. Domain 1 tests routing logic; Domain 4 tests prompt adaptation across tiers; Domain 5 tests context-window management per tier.
  2. Practise scenarios where the correct answer is the cheaper model, not the most capable one.
  3. Practise distinguishing when a high-stakes task genuinely requires Opus (irreversible action, regulatory consequence, no human review gate) from when Sonnet suffices (complex but human-reviewed output, lower-stakes synthesis).
  4. Work through the context management concepts to understand how context-window size differences across tiers affect chunking and summarisation strategies in production pipelines.

The 174 atomic concepts in AI Skill Certs' CCAR-F library map each concept to a domain and task statement. Model selection threads through at least three of those five domains, which is why it appears in more exam scenarios than its absence from the explicit domain list might suggest. Candidates who treat model selection as a niche API detail rather than a systems-level judgement call consistently underscore on Domain 1.

Frequently asked questions

What is the passing score for the CCAR-F exam?
The passing score is 720 on a scale of 100 to 1000. Anthropic does not publish the raw-to-scaled conversion, so the exact number of correct answers required is not publicly stated. The score report gives pass or fail, the scaled score, and percent-correct by domain.
How much does the CCAR-F exam cost per attempt?
The CCAR-F costs $125 USD per attempt. Tiered Claude Partner Network partners receive discounted first attempts. This is separate from the CCAO-F Associate track at $99 and the CCAR-P Professional track at $175 per attempt.
How long is the CCAR-F certification valid after passing?
The CCAR-F credential is valid for 12 months from the date it is awarded. Credential holders must recertify annually to maintain an active certification status under the Claude Partner Network programme.
Does the CCAR-F exam test recall of specific Claude model identifiers?
No. The CCAR-F tests practical judgement about model-tier selection through scenario-based items, not recall of model names or identifiers. The exam rewards understanding of capability tiers, routing logic, and the relationship between model choice, production reliability, and partner economics.
What percentage of the CCAR-F exam covers Domain 1, Agentic Architecture and Orchestration?
Domain 1, Agentic Architecture and Orchestration, carries 27% of the CCAR-F exam weight. It is the highest-weighted of the five domains and covers coordinator design, subagent routing, orchestration patterns, and hook integration across the 60 scenario-based items.

People also ask

What are the different Claude AI models?
The current Claude family includes Haiku 4.5 (fast, high-volume tasks), Sonnet 5 (balanced general-purpose reasoning), Opus 5 (maximum capability for complex reasoning), and Fable 5 (narrative tasks). Each sits at a distinct capability and cost tier. Architects choose between them based on task stakes, latency requirements, and partner service economics.
Which Claude AI model is best for coding tasks?
Sonnet 5 handles most coding tasks well, balancing reasoning depth with speed and cost. Opus 5 suits complex multi-file refactoring or architectural analysis where accuracy outweighs throughput. Haiku 4.5 covers lightweight code tasks such as syntax checking or template generation at high volume and low cost.
What is the most capable Claude AI model available?
Opus 5 is Anthropic's highest-capability model in the current lineup. It is designed for deep, multi-step reasoning and suits tasks such as complex contract analysis, regulatory review, and agentic workflows where errors carry irreversible consequences and accuracy outweighs cost-per-request.
How do I choose between Claude AI models for my application?
Route high-stakes, irreversible tasks to Opus 5; balanced general-purpose work to Sonnet 5; and high-volume, low-stakes tasks to Haiku 4.5. The CCAR-F exam (Domain 1, 27%) tests this routing judgement through scenario-based items that require defending decisions on both technical and economic grounds.
Are Claude AI models covered in a professional certification exam?
Yes. Anthropic's Claude Partner Network runs four proctored Pearson VUE certification tracks. The CCAR-F (Architect Foundations) and CCDV-F (Developer Foundations) exams both cost $125 per attempt and require a scaled score of 720 to pass. As of 3 June 2026, more than 10,000 individuals hold a Claude certification.

About the author

Solomon Udoh

AI Architect & Certification Lead

Solomon Udoh is an AI Architect who designs and ships production agent systems on the Claude API and Claude Code. He built AI Skill Certs' adaptive engine and authored its 174-concept knowledge graph, mapping every Claude Certified Architect - Foundations objective to hands-on, exam-aligned practice.

  • Designs production multi-agent systems on the Claude API and Agent SDK
  • Author of the AI Skill Certs knowledge graph (174 mapped exam concepts)
  • Builds with MCP, Claude Code, structured outputs, and agentic loops daily
  • Reviews every concept page against the official Anthropic exam guide

You might also like

Ready to put it into practice?

Study every exam concept with an adaptive tutor.

Start studying