import React from 'react'; import { Checkbox } from '@renderer/components/ui/checkbox'; import { Label } from '@renderer/components/ui/label'; import { AlertTriangle } from 'lucide-react'; interface ExtendedContextCheckboxProps { id: string; checked: boolean; onCheckedChange: (checked: boolean) => void; disabled?: boolean; } export const ExtendedContextCheckbox: React.FC = ({ id, checked, onCheckedChange, disabled = false, }) => ( <>
onCheckedChange(value === true)} />
{checked && (

Beyond 200K tokens, premium pricing applies: 2x input cost, 1.5x output cost. For subscribers, extra usage is billed separately.

Requires API tier 4+ or extra usage enabled.{' '}

)} );