From f27de6ab3ab3cf4e08e2599a5ba8fec950387474 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Wed, 23 Jul 2025 09:54:40 +0545 Subject: [PATCH] Update custom provider config: Change 'Base URL' to 'API Endpoint URL' in placeholder and label for clarity --- VoiceInk/Views/AI Models/APIKeyManagementView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VoiceInk/Views/AI Models/APIKeyManagementView.swift b/VoiceInk/Views/AI Models/APIKeyManagementView.swift index 5f300d3..4e4ddd9 100644 --- a/VoiceInk/Views/AI Models/APIKeyManagementView.swift +++ b/VoiceInk/Views/AI Models/APIKeyManagementView.swift @@ -250,14 +250,14 @@ struct APIKeyManagementView: View { // Configuration Fields VStack(alignment: .leading, spacing: 8) { if !aiService.isAPIKeyValid { - TextField("Base URL (e.g., https://api.example.com/v1/chat/completions)", text: $aiService.customBaseURL) + TextField("API Endpoint URL (e.g., https://api.example.com/v1/chat/completions)", text: $aiService.customBaseURL) .textFieldStyle(.roundedBorder) TextField("Model Name (e.g., gpt-4o-mini, claude-3-5-sonnet-20240620)", text: $aiService.customModel) .textFieldStyle(.roundedBorder) } else { VStack(alignment: .leading, spacing: 8) { - Text("Base URL") + Text("API Endpoint URL") .font(.subheadline) .foregroundColor(.secondary) Text(aiService.customBaseURL)