RAG Pipeline Test Shows Cost Per Token Isn't the Right Metric for Model Selection

A developer ran a production-level comparison of three AI models using identical RAG pipelines to answer a nuanced customer query about SOC 2 compliance. The test used Claude Haiku 4.5, Amazon Nova Pro, and Amazon Nova Lite with the same setup: two vector stores (product docs and marketing/competitive docs), 13 Architecture Decision Records as grounding context, approximately 49K input tokens of retrieved context per query, identical system prompts, and the same Bedrock API call structure with only the model ID changed.
Test Setup and Results
The query was: "A customer asked about SOC 2 compliance — how do I respond?" All models received the same RAG context containing a complete playbook with copy-paste emails, objection handlers, competitive positioning, framework-specific compliance answers, and guardrails for what not to say.
Results:
- Nova Lite: 49,067 input tokens, 244 output tokens, 5.5s response time, ~$0.003 cost
- Nova Pro: 49,067 input tokens, 368 output tokens, 13.5s response time, ~$0.040 cost
- Haiku 4.5: 53,674 input tokens, 1,534 output tokens, 15.6s response time, $0.049 cost
Output Quality Comparison
Despite identical context, the models produced dramatically different responses:
- Nova Lite: Generated a four-paragraph generic email that got the core fact right (deploys in your account, no separate SOC 2 report) but included no objection handling, competitive positioning, or nuance from the context. Ended with meta-commentary about adhering to ADRs.
- Nova Pro: Produced seven numbered bullet points covering technical aspects like data residency, authentication, access control, monitoring, patching, secrets management, and compliance scope. Technically accurate but read like pasted AWS documentation with similar meta-commentary.
- Haiku 4.5: Delivered a full playbook with plain-English explanation, copy-paste ready email, pushback handler with Terraform analogy, framework-specific answers for HIPAA, PCI-DSS, SOX, FINRA, "what NOT to say" guardrails, CRM-ready talking points, and competitive positioning against other tools.
Key Finding
The gap wasn't about available information—all models had the same ~49K input tokens containing the complete playbook. The difference was in what each model could extract and synthesize. Nova Lite extracted one fact, Nova Pro organized facts into a list, while Haiku synthesized the context into an actionable toolkit with anticipated follow-ups.
The cost difference between Nova Pro and Haiku was $0.009 per query (less than a penny), but the output quality gap was substantial. The cheapest model per token produced responses that would require 2-3 follow-up queries to match Haiku's single-pass output, ultimately costing more through repeated RAG pipeline usage.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw Configurations That Last: Less Complexity, More Reliability
Analysis of 40-50 OpenClaw setups shows that sustainable configurations use 1 agent, 3-5 skills, Sonnet model, and focus on mundane tasks like calendar management and email triage, while complex multi-agent systems with 20+ skills typically fail within 3 weeks.

Operational Memory Over Automation: Why Small Business Agents Need to Remember
The real value for small business AI agents isn't automation — it's operational memory. A white paper from McPhersonAI argues agents should behave like disciplined operators: remember standards, notice drift, preserve context, and surface what matters.

Claude Time Travel Game Evolves from Prompt to Full Deployed System
A Reddit user describes evolving a time travel RPG prompt in Claude into a complex system over 40 days, adding YAML state files, 50+ NPCs, event triggers, and eventually deploying it on Fly with a database and custom MCP server for cross-platform access.

Qwen 3.6 27B Q8_k_xl as a Local Daily Driver for VSCode
A developer shares their experience using Qwen-3.6-27B-q8_k_xl by Unsloth in VSCode Insiders via LM Studio on an RTX 6000 Pro, finding it 'good enough' for daily coding tasks without API tokens.