mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-19 02:52:13 +00:00
Prevented OS credentials from reaching public hosts or cross-origin redirects. Preserved Responses API reasoning items across tool rounds. Fixed nullable tool-call handling and omitted unsupported null request properties. Propagated cancellation correctly. Removed tool argument values from logs and tool results from persisted traces. Added settings validation, clearable optional enums, managed-confidence validation, and safe fallback behavior. Added tool-definition schema and duplicate validation. Fixed documentation JSON, changelog regressions, typos, trailing whitespace, and unused Anthropic code.
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>
|