import React from 'react'; import { Label } from '@renderer/components/ui/label'; import { cn } from '@renderer/lib/utils'; import { Brain } from 'lucide-react'; const EFFORT_OPTIONS = [ { value: '', label: 'Default' }, { value: 'low', label: 'Low' }, { value: 'medium', label: 'Medium' }, { value: 'high', label: 'High' }, ] as const; export interface EffortLevelSelectorProps { value: string; onValueChange: (value: string) => void; id?: string; } export const EffortLevelSelector: React.FC = ({ value, onValueChange, id, }) => (
{EFFORT_OPTIONS.map((opt) => ( ))}

Controls how much reasoning Claude invests before responding. Default uses Claude's standard behavior.

);