@using AIStudio.Provider @using AIStudio.Settings.DataModel @inherits SettingsPanelBase @if (PreviewFeatures.PRE_SPEECH_TO_TEXT_2026.IsEnabled(this.SettingsManager)) { @T("Configured Transcription Providers") @T("With the support of transcription models, MindWork AI Studio can convert human speech into text. This is useful, for example, when you need to dictate text. You can choose from dedicated transcription models, but not multimodal LLMs (large language models) that can handle both speech and text. The configuration of multimodal models is done in the 'Configure providers' section.") # @T("Name") @T("Provider") @T("Model") @T("Actions") @context.Num @context.Name @context.UsedLLMProvider.ToName() @GetTranscriptionProviderModelName(context) @if (context.IsEnterpriseConfiguration) { } else { } @if (this.SettingsManager.ConfigurationData.TranscriptionProviders.Count == 0) { @T("No transcription provider configured yet.") } @T("Add transcription provider") }