mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 15:59:47 +00:00
Some checks are pending
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, deb) (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
134 lines
7.0 KiB
Plaintext
134 lines
7.0 KiB
Plaintext
@using AIStudio.Provider
|
|
@using AIStudio.Provider.HuggingFace
|
|
@using AIStudio.Provider.SelfHosted
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudForm @ref="@this.form" @bind-IsValid="@this.dataIsValid" @bind-Errors="@this.dataIssues">
|
|
<MudStack Row="@true" AlignItems="AlignItems.Center">
|
|
@* ReSharper disable once CSharpWarnings::CS8974 *@
|
|
<MudSelect @bind-Value="@this.DataLLMProvider" Label="Provider" Class="mb-3" OpenIcon="@Icons.Material.Filled.AccountBalance" AdornmentColor="Color.Info" Adornment="Adornment.Start" Validation="@this.providerValidation.ValidatingProvider">
|
|
@foreach (LLMProviders provider in Enum.GetValues(typeof(LLMProviders)))
|
|
{
|
|
<MudSelectItem Value="@provider">
|
|
@provider.ToName()
|
|
</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
<MudButton Disabled="@(!this.DataLLMProvider.ShowRegisterButton())" Variant="Variant.Filled" Size="Size.Small" StartIcon="@Icons.Material.Filled.OpenInBrowser" Href="@this.DataLLMProvider.GetCreationURL()" Target="_blank">Create account</MudButton>
|
|
</MudStack>
|
|
|
|
@if (this.DataLLMProvider.IsAPIKeyNeeded(this.DataHost))
|
|
{
|
|
@* ReSharper disable once CSharpWarnings::CS8974 *@
|
|
<MudTextField
|
|
T="string"
|
|
@bind-Text="@this.dataAPIKey"
|
|
Label="@this.APIKeyText"
|
|
Class="mb-3"
|
|
Adornment="Adornment.Start"
|
|
AdornmentIcon="@Icons.Material.Filled.VpnKey"
|
|
AdornmentColor="Color.Info"
|
|
InputType="InputType.Password"
|
|
Validation="@this.providerValidation.ValidatingAPIKey"/>
|
|
}
|
|
|
|
@if (this.DataLLMProvider.IsHostnameNeeded())
|
|
{
|
|
<MudTextField
|
|
T="string"
|
|
@bind-Text="@this.DataHostname"
|
|
Label="Hostname"
|
|
Class="mb-3"
|
|
Adornment="Adornment.Start"
|
|
AdornmentIcon="@Icons.Material.Filled.Dns"
|
|
AdornmentColor="Color.Info"
|
|
Validation="@this.providerValidation.ValidatingHostname"
|
|
UserAttributes="@SPELLCHECK_ATTRIBUTES"/>
|
|
}
|
|
|
|
@if (this.DataLLMProvider.IsHostNeeded())
|
|
{
|
|
<MudSelect @bind-Value="@this.DataHost" Label="Host" Class="mb-3" OpenIcon="@Icons.Material.Filled.ExpandMore" AdornmentColor="Color.Info" Adornment="Adornment.Start" Validation="@this.providerValidation.ValidatingHost">
|
|
@foreach (Host host in Enum.GetValues(typeof(Host)))
|
|
{
|
|
<MudSelectItem Value="@host">
|
|
@host.Name()
|
|
</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
}
|
|
|
|
@if (this.DataLLMProvider.IsHFInstanceProviderNeeded())
|
|
{
|
|
<MudSelect Disabled="@(!this.DataLLMProvider.IsHFInstanceProviderNeeded())" @bind-Value="@this.HfInstanceProviderId" Label="HF Instance Provider" Class="mb-3" OpenIcon="@Icons.Material.Filled.Dns" AdornmentColor="Color.Info" Adornment="Adornment.Start" Validation="@this.providerValidation.ValidatingHFInstanceProvider">
|
|
@foreach (HFInstanceProvider instanceProvider in Enum.GetValues(typeof(HFInstanceProvider)))
|
|
{
|
|
<MudSelectItem Value="@instanceProvider">@instanceProvider.ToName()</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
|
|
<MudJustifiedText Class="mb-3"> Please double-check if your model name matches the curl specifications provided by the instance provider. If it doesn't, you might get a <b>Not Found</b> error when trying to use the model. Here's a <MudLink Href="https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct?inference_api=true&inference_provider=novita&language=sh" Target="_blank">curl example</MudLink>.</MudJustifiedText>
|
|
}
|
|
|
|
<MudStack Row="@true" AlignItems="AlignItems.Center">
|
|
@if (this.DataLLMProvider.IsLLMModelProvidedManually())
|
|
{
|
|
<MudButton Variant="Variant.Filled" Size="Size.Small" StartIcon="@Icons.Material.Filled.OpenInBrowser" Href="@this.DataLLMProvider.GetModelsOverviewURL(this.HfInstanceProviderId)" Target="_blank">Show available models</MudButton>
|
|
<MudTextField
|
|
T="string"
|
|
@bind-Text="@this.dataManuallyModel"
|
|
Label="Model"
|
|
Class="mb-3"
|
|
Adornment="Adornment.Start"
|
|
AdornmentIcon="@Icons.Material.Filled.FaceRetouchingNatural"
|
|
AdornmentColor="Color.Info"
|
|
Validation="@this.ValidateManuallyModel"
|
|
UserAttributes="@SPELLCHECK_ATTRIBUTES"
|
|
/>
|
|
}
|
|
else
|
|
{
|
|
<MudButton Disabled="@(!this.DataLLMProvider.CanLoadModels(this.DataHost, this.dataAPIKey))" Variant="Variant.Filled" Size="Size.Small" StartIcon="@Icons.Material.Filled.Refresh" OnClick="this.ReloadModels">Load</MudButton>
|
|
<MudSelect Disabled="@this.IsNoneProvider" @bind-Value="@this.DataModel" Label="Model" Class="mb-3" OpenIcon="@Icons.Material.Filled.FaceRetouchingNatural" AdornmentColor="Color.Info" Adornment="Adornment.Start" Validation="@this.providerValidation.ValidatingModel">
|
|
@foreach (var model in this.availableModels)
|
|
{
|
|
<MudSelectItem Value="@model">@model</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
}
|
|
</MudStack>
|
|
|
|
@* ReSharper disable once CSharpWarnings::CS8974 *@
|
|
<MudTextField
|
|
T="string"
|
|
@bind-Text="@this.DataInstanceName"
|
|
Label="Instance Name"
|
|
Class="mb-3"
|
|
MaxLength="40"
|
|
Counter="40"
|
|
Immediate="@true"
|
|
Adornment="Adornment.Start"
|
|
AdornmentIcon="@Icons.Material.Filled.Lightbulb"
|
|
AdornmentColor="Color.Info"
|
|
Validation="@this.providerValidation.ValidatingInstanceName"
|
|
UserAttributes="@SPELLCHECK_ATTRIBUTES"
|
|
/>
|
|
|
|
</MudForm>
|
|
<Issues IssuesData="@this.dataIssues"/>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled">Cancel</MudButton>
|
|
<MudButton OnClick="@this.Store" Variant="Variant.Filled" Color="Color.Primary">
|
|
@if(this.IsEditing)
|
|
{
|
|
@:Update
|
|
}
|
|
else
|
|
{
|
|
@:Add
|
|
}
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |