Use usable models instead of available models

This commit is contained in:
Beingpax 2025-07-25 07:41:35 +05:45
parent 386d4e8198
commit d31ce5dbf3

View File

@ -351,8 +351,8 @@ struct ConfigurationView: View {
SectionHeader(title: "Transcription")
// Whisper Model Selection Subsection
if whisperState.availableModels.isEmpty {
Text("No Whisper models available. Download models in the AI Models tab.")
if whisperState.usableModels.isEmpty {
Text("No transcription models available. Please connect to a cloud service or download a local model in the AI Models tab.")
.font(.subheadline)
.foregroundColor(.secondary)
.padding()