@using AIStudio.Provider @inherits SettingsPanelProviderBase @T("Configured LLM Providers") @T("What we call a provider is the combination of an LLM provider such as OpenAI and a model like GPT-4o. You can configure as many providers as you want. This way, you can use the appropriate model for each task. As an LLM provider, you can also choose local providers. However, to use this app, you must configure at least one provider.") # @T("Instance Name") @T("Provider") @T("Model") @T("Actions") @context.Num @context.InstanceName @context.UsedLLMProvider.ToName() @this.GetLLMProviderModelName(context) @if (context.IsEnterpriseConfiguration) { } else { @if (this.SettingsManager.ConfigurationData.App.ShowAdminSettings) { } } @if(this.SettingsManager.ConfigurationData.Providers.Count == 0) { @T("No providers configured yet.") }