2024-08-21 06:30:01 +00:00
|
|
|
@attribute [Route(Routes.SETTINGS)]
|
2025-01-05 14:11:15 +00:00
|
|
|
@using AIStudio.Components.Settings
|
2025-02-22 19:51:06 +00:00
|
|
|
@using AIStudio.Settings.DataModel
|
2024-04-19 19:25:44 +00:00
|
|
|
|
2025-01-21 12:40:47 +00:00
|
|
|
<div class="inner-scrolling-context">
|
|
|
|
<MudText Typo="Typo.h3" Class="mb-12">Settings</MudText>
|
2024-04-19 19:25:44 +00:00
|
|
|
|
2025-01-21 12:40:47 +00:00
|
|
|
<InnerScrolling>
|
|
|
|
<MudExpansionPanels Class="mb-3" MultiExpansion="@false">
|
2025-03-12 10:31:01 +00:00
|
|
|
<SettingsPanelProviders @bind-AvailableLLMProviders="@this.availableLLMProviders"/>
|
|
|
|
|
2025-02-22 19:51:06 +00:00
|
|
|
@if (PreviewFeatures.PRE_RAG_2024.IsEnabled(this.SettingsManager))
|
|
|
|
{
|
|
|
|
<SettingsPanelEmbeddings AvailableLLMProvidersFunc="() => this.availableLLMProviders" @bind-AvailableEmbeddingProviders="@this.availableEmbeddingProviders"/>
|
|
|
|
<SettingsPanelDataSources AvailableLLMProvidersFunc="() => this.availableLLMProviders" AvailableEmbeddingsFunc="() => this.availableEmbeddingProviders" @bind-AvailableDataSources="@this.availableDataSources"/>
|
|
|
|
}
|
2025-03-12 10:31:01 +00:00
|
|
|
<SettingsPanelProfiles AvailableLLMProvidersFunc="() => this.availableLLMProviders"/>
|
|
|
|
<SettingsPanelApp AvailableLLMProvidersFunc="() => this.availableLLMProviders"/>
|
|
|
|
<SettingsPanelChat AvailableLLMProvidersFunc="() => this.availableLLMProviders"/>
|
|
|
|
<SettingsPanelWorkspaces AvailableLLMProvidersFunc="() => this.availableLLMProviders"/>
|
|
|
|
|
2025-02-22 19:51:06 +00:00
|
|
|
@if (PreviewFeatures.PRE_RAG_2024.IsEnabled(this.SettingsManager))
|
|
|
|
{
|
|
|
|
<SettingsPanelAgentDataSourceSelection AvailableLLMProvidersFunc="() => this.availableLLMProviders"/>
|
|
|
|
<SettingsPanelAgentRetrievalContextValidation AvailableLLMProvidersFunc="() => this.availableLLMProviders"/>
|
|
|
|
}
|
2025-03-12 10:31:01 +00:00
|
|
|
|
|
|
|
<SettingsPanelAgentContentCleaner AvailableLLMProvidersFunc="() => this.availableLLMProviders"/>
|
2025-01-21 12:40:47 +00:00
|
|
|
</MudExpansionPanels>
|
|
|
|
</InnerScrolling>
|
|
|
|
</div>
|