diff --git a/src/components/ModelPicker.tsx b/src/components/ModelPicker.tsx index 51e63c4..0354aa1 100644 --- a/src/components/ModelPicker.tsx +++ b/src/components/ModelPicker.tsx @@ -138,8 +138,6 @@ export function ModelPicker() { return null; } const selectedModel = settings?.selectedModel; - const isSmartAutoEnabled = - settings.enableProSmartFilesContextMode && isDyadProEnabled(settings); const modelDisplayName = getModelDisplayName(); // Split providers into primary and secondary groups (excluding auto) const providerEntries = @@ -231,19 +229,9 @@ export function ModelPicker() { >
- - {isSmartAutoEnabled && model.apiName === "auto" - ? "Smart Auto" - : model.displayName} - + {model.displayName}
- {isSmartAutoEnabled && - !model.displayName.includes("(Pro)") && ( - - Pro only - - )} {model.tag && ( - {isSmartAutoEnabled && model.apiName === "auto" ? ( -

- Smart Auto uses a cheaper model for - easier tasks -
and a flagship model for harder tasks -

- ) : ( - model.description - )} + {model.description}
))}