@using AIStudio.Provider @using AIStudio.Provider.HuggingFace @using AIStudio.Provider.SelfHosted @* ReSharper disable once CSharpWarnings::CS8974 *@ @foreach (LLMProviders provider in Enum.GetValues(typeof(LLMProviders))) { @provider.ToName() } Create account @if (this.DataLLMProvider.IsAPIKeyNeeded(this.DataHost)) { @* ReSharper disable once CSharpWarnings::CS8974 *@ } @if (this.DataLLMProvider.IsHostnameNeeded()) { } @if (this.DataLLMProvider.IsHostNeeded()) { @foreach (Host host in Enum.GetValues(typeof(Host))) { @host.Name() } } @if (this.DataLLMProvider.IsHFInstanceProviderNeeded()) { @foreach (HFInstanceProvider instanceProvider in Enum.GetValues(typeof(HFInstanceProvider))) { @instanceProvider.ToName() } Please double-check if your model name matches the curl specifications provided by the instance provider. If it doesn't, you might get a Not Found error when trying to use the model. Here's a curl example. } @if (this.DataLLMProvider.IsLLMModelProvidedManually()) { Show available models } else { Load @foreach (var model in this.availableModels) { @model } } @* ReSharper disable once CSharpWarnings::CS8974 *@ Cancel @if(this.IsEditing) { @:Update } else { @:Add }