/** * Anthropic Managed-Agents session runtime price. Flat $0.08 per * session-hour, metered per-millisecond while Anthropic reports * `status = running`. On top of token usage. * * This file is the SINGLE SOURCE OF TRUTH — the proxy's cost math * (`packages/proxy/src/services/agent-session-registry.ts`) and the * SDK README both reference it. If Anthropic changes the rate, update * it here and everything that derives from it follows. * * Authoritative pricing page: * https://www.anthropic.com/pricing */ export const AGENT_RUNTIME_USD_PER_HOUR = 0.08; export const AGENT_RUNTIME_USD_PER_SECOND = AGENT_RUNTIME_USD_PER_HOUR / 3600;