import React from 'react'; export const ANTHROPIC_SONNET_EXTRA_USAGE_WARNING = 'Sonnet 1M context can affect billing depending on your Anthropic plan and runtime. Claude Platform lists Sonnet 4.6 1M at standard API pricing, while Claude Code plans can require Extra Usage for Sonnet 1M; enable Limit context to 200K tokens to avoid long-context behavior.'; export const ANTHROPIC_LONG_CONTEXT_PRICING_URL = 'https://platform.claude.com/docs/en/about-claude/pricing'; export const AnthropicExtraUsageWarning = (): React.JSX.Element => (

{ANTHROPIC_SONNET_EXTRA_USAGE_WARNING}{' '} Read Anthropic pricing docs .

);