fix: update default selected agent profile to 'auto'

Changed the default value for the selected agent profile from 'balanced' to 'auto' in the AgentProfiles component to improve user experience and align with expected behavior.
This commit is contained in:
AndyMik90
2025-12-20 12:10:05 +01:00
parent 7f0eeba366
commit 37ace0a39a
@@ -19,7 +19,7 @@ const iconMap: Record<string, React.ElementType> = {
*/
export function AgentProfiles() {
const settings = useSettingsStore((state) => state.settings);
const selectedProfileId = settings.selectedAgentProfile || 'balanced';
const selectedProfileId = settings.selectedAgentProfile || 'auto';
const handleSelectProfile = async (profileId: string) => {
await saveSettings({ selectedAgentProfile: profileId });