From 0b79f719468f03e63d9ea66d797d493465634fb7 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Fri, 25 Jul 2025 15:06:41 +0545 Subject: [PATCH] Show Cerebras as Free --- VoiceInk/Views/AI Models/APIKeyManagementView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VoiceInk/Views/AI Models/APIKeyManagementView.swift b/VoiceInk/Views/AI Models/APIKeyManagementView.swift index 787a66a..40e5bdf 100644 --- a/VoiceInk/Views/AI Models/APIKeyManagementView.swift +++ b/VoiceInk/Views/AI Models/APIKeyManagementView.swift @@ -393,7 +393,7 @@ struct APIKeyManagementView: View { Spacer() HStack(spacing: 8) { - Text(aiService.selectedProvider == .groq || aiService.selectedProvider == .gemini ? "Free" : "Paid") + Text((aiService.selectedProvider == .groq || aiService.selectedProvider == .gemini || aiService.selectedProvider == .cerebras) ? "Free" : "Paid") .font(.caption2) .foregroundColor(.secondary) .padding(.horizontal, 6)