Loading...
Loading...
Claude models with 200K context, Constitutional AI, and extended thinking
Constitutional AI: Safety principles built into training, not added as guardrails.
200K context: Process entire novels or codebases in one pass.
Native PDF support: No conversion needed.
Compare costs for analyzing a 50K-token document:
tokens = 50000
models = [("Claude Sonnet", 3.00), ("Claude Haiku", 0.80), ("GPT-4o", 2.50)]
for name, rate in models:
cost = (tokens / 1e6) * rate
print(f"{name:20s}: ${cost:.4f}")