Standardize Groq naming to proper case

This commit is contained in:
Beingpax 2026-01-05 22:32:22 +05:45
parent 948033ac28
commit 8c1443f901
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import Foundation
enum AIProvider: String, CaseIterable {
case cerebras = "Cerebras"
case groq = "GROQ"
case groq = "Groq"
case gemini = "Gemini"
case anthropic = "Anthropic"
case openAI = "OpenAI"

View File

@ -27,7 +27,7 @@ struct CloudModelCardView: View {
private var providerKey: String {
switch model.provider {
case .groq:
return "GROQ"
return "Groq"
case .elevenLabs:
return "ElevenLabs"
case .deepgram: