Improved document analysis assistant with admin toggle

This commit is contained in:
Thorsten Sommer 2026-02-04 20:09:45 +01:00
parent 1cccd55486
commit 78e80bdd49
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 11 additions and 7 deletions

View File

@ -136,6 +136,8 @@ else
<ReadFileContent Text="@T("Load output rules from document")" @bind-FileContent="@this.policyOutputRules" Disabled="@this.IsNoPolicySelectedOrProtected"/> <ReadFileContent Text="@T("Load output rules from document")" @bind-FileContent="@this.policyOutputRules" Disabled="@this.IsNoPolicySelectedOrProtected"/>
@if (this.SettingsManager.ConfigurationData.App.ShowAdminSettings)
{
<MudText Typo="Typo.h5" Class="mt-6 mb-1"> <MudText Typo="Typo.h5" Class="mt-6 mb-1">
@T("Preparation for enterprise distribution") @T("Preparation for enterprise distribution")
</MudText> </MudText>
@ -144,6 +146,7 @@ else
@T("Export policy as configuration section") @T("Export policy as configuration section")
</MudButton> </MudButton>
} }
}
</ExpansionPanel> </ExpansionPanel>
<MudDivider Style="height: 0.25ch; margin: 1rem 0;" Class="mt-6" /> <MudDivider Style="height: 0.25ch; margin: 1rem 0;" Class="mt-6" />

View File

@ -1,3 +1,4 @@
# v26.2.2, build 234 (2026-02-xx xx:xx UTC) # v26.2.2, build 234 (2026-02-xx xx:xx UTC)
- Added a vector database (Qdrant) as a building block for our local RAG (retrieval-augmented generation) solution. Thank you very much, Paul (`PaulKoudelka`), for this major contribution. Note that our local RAG implementation remained in preview and has not yet been released; other building blocks are not yet ready. - Added a vector database (Qdrant) as a building block for our local RAG (retrieval-augmented generation) solution. Thank you very much, Paul (`PaulKoudelka`), for this major contribution. Note that our local RAG implementation remained in preview and has not yet been released; other building blocks are not yet ready.
- Added an app setting to enable administration options for IT staff to configure and maintain organization-wide settings. - Added an app setting to enable administration options for IT staff to configure and maintain organization-wide settings.
- Improved the document analysis assistant (in beta) by hiding the export functionality by default. Enable the administration options in the app settings to show and use the export functionality. This streamlines the usage for regular users.