Skip to content

Commit 97dfc05

Browse files
authored
Change default Groq model to whisper-large-v3 (#9)
Both models share identical free tier limits (20 RPM, 2K RPD, 8hrs audio/day), so there is no reason to default to the faster but less accurate turbo variant. whisper-large-v3 provides better accuracy with negligible latency difference for short dictation clips.
1 parent a9543b3 commit 97dfc05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AudioType/Core/GroqEngine.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ enum GroqModel: String, CaseIterable {
99
var displayName: String {
1010
switch self {
1111
case .whisperLargeV3Turbo: return "Whisper Large V3 Turbo (faster)"
12-
case .whisperLargeV3: return "Whisper Large V3 (most accurate)"
12+
case .whisperLargeV3: return "Whisper Large V3 (best, default)"
1313
}
1414
}
1515

@@ -20,7 +20,7 @@ enum GroqModel: String, CaseIterable {
2020
{
2121
return model
2222
}
23-
return .whisperLargeV3Turbo
23+
return .whisperLargeV3
2424
}
2525
set {
2626
UserDefaults.standard.set(newValue.rawValue, forKey: "groqModel")

0 commit comments

Comments
 (0)