mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 19:56:27 +00:00
# Conflicts: # app/MindWork AI Studio/Assistants/AssistantBase.razor.cs # app/MindWork AI Studio/Assistants/I18N/allTexts.lua # app/MindWork AI Studio/Components/ChatComponent.razor.cs # app/MindWork AI Studio/Plugins/configuration/plugin.lua # app/MindWork AI Studio/Plugins/languages/de-de-43065dbc-78d0-45b7-92be-f14c2926e2dc/plugin.lua # app/MindWork AI Studio/Plugins/languages/en-us-97dfb1ba-50c4-4440-8dfa-6575daf543c8/plugin.lua # app/MindWork AI Studio/Provider/AlibabaCloud/ProviderAlibabaCloud.cs # app/MindWork AI Studio/Provider/BaseProvider.cs # app/MindWork AI Studio/Provider/DeepSeek/ProviderDeepSeek.cs # app/MindWork AI Studio/Provider/Fireworks/ProviderFireworks.cs # app/MindWork AI Studio/Provider/GWDG/ProviderGWDG.cs # app/MindWork AI Studio/Provider/Google/ProviderGoogle.cs # app/MindWork AI Studio/Provider/Groq/ProviderGroq.cs # app/MindWork AI Studio/Provider/Helmholtz/ProviderHelmholtz.cs # app/MindWork AI Studio/Provider/HuggingFace/ProviderHuggingFace.cs # app/MindWork AI Studio/Provider/Mistral/ProviderMistral.cs # app/MindWork AI Studio/Provider/OpenAI/ProviderOpenAI.cs # app/MindWork AI Studio/Provider/OpenAI/ResponsesAPIRequest.cs # app/MindWork AI Studio/Provider/OpenRouter/ProviderOpenRouter.cs # app/MindWork AI Studio/Provider/Perplexity/ProviderPerplexity.cs # app/MindWork AI Studio/Provider/SelfHosted/ProviderSelfHosted.cs # app/MindWork AI Studio/Provider/X/ProviderX.cs # app/MindWork AI Studio/Settings/DataModel/Data.cs # app/MindWork AI Studio/Tools/PluginSystem/PluginConfiguration.cs # app/MindWork AI Studio/Tools/PluginSystem/PluginFactory.Loading.cs # app/MindWork AI Studio/wwwroot/changelog/v26.4.1.md
38 lines
1.8 KiB
Plaintext
38 lines
1.8 KiB
Plaintext
@using AIStudio.Components.Settings
|
|
@using AIStudio.Settings.DataModel
|
|
@attribute [Route(Routes.SETTINGS)]
|
|
@inherits MSGComponentBase
|
|
|
|
<div class="inner-scrolling-context">
|
|
<MudText Typo="Typo.h3" Class="mb-12">@T("Settings")</MudText>
|
|
|
|
<InnerScrolling>
|
|
<MudExpansionPanels Class="mb-3" MultiExpansion="@false">
|
|
<SettingsPanelProviders @bind-AvailableLLMProviders="@this.availableLLMProviders"/>
|
|
|
|
@if (PreviewFeatures.PRE_RAG_2024.IsEnabled(this.SettingsManager))
|
|
{
|
|
<SettingsPanelEmbeddings AvailableLLMProvidersFunc="@(() => this.availableLLMProviders)" @bind-AvailableEmbeddingProviders="@this.availableEmbeddingProviders"/>
|
|
}
|
|
|
|
@if (PreviewFeatures.PRE_SPEECH_TO_TEXT_2026.IsEnabled(this.SettingsManager))
|
|
{
|
|
<SettingsPanelTranscription AvailableLLMProvidersFunc="@(() => this.availableLLMProviders)" @bind-AvailableTranscriptionProviders="@this.availableTranscriptionProviders"/>
|
|
}
|
|
|
|
<SettingsPanelApp AvailableLLMProvidersFunc="@(() => this.availableLLMProviders)"/>
|
|
|
|
<SettingsPanelTools />
|
|
|
|
@if (PreviewFeatures.PRE_RAG_2024.IsEnabled(this.SettingsManager))
|
|
{
|
|
<SettingsPanelAgentDataSourceSelection AvailableLLMProvidersFunc="@(() => this.availableLLMProviders)"/>
|
|
<SettingsPanelAgentRetrievalContextValidation AvailableLLMProvidersFunc="@(() => this.availableLLMProviders)"/>
|
|
}
|
|
|
|
<SettingsPanelAgentContentCleaner AvailableLLMProvidersFunc="@(() => this.availableLLMProviders)"/>
|
|
<SettingsPanelAgentAssistantAudit AvailableLLMProvidersFunc="@(() => this.availableLLMProviders)"/>
|
|
</MudExpansionPanels>
|
|
</InnerScrolling>
|
|
</div>
|