Upgraded voice recording & document analysis to the beta state (#651)

This commit is contained in:
Thorsten Sommer 2026-02-01 20:13:25 +01:00 committed by GitHub
parent f1fa8fd8a0
commit 8f9cd40d06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 6 deletions

View File

@ -2,7 +2,7 @@
@inherits AssistantBaseCore<AIStudio.Dialogs.Settings.NoSettingsPanel> @inherits AssistantBaseCore<AIStudio.Dialogs.Settings.NoSettingsPanel>
@using AIStudio.Settings.DataModel @using AIStudio.Settings.DataModel
<PreviewPrototype ApplyInnerScrollingFix="true"/> <PreviewBeta ApplyInnerScrollingFix="true"/>
<div class="mb-6"></div> <div class="mb-6"></div>
<MudText Typo="Typo.h4" Class="mb-3"> <MudText Typo="Typo.h4" Class="mb-3">

View File

@ -5,7 +5,7 @@
@if (PreviewFeatures.PRE_SPEECH_TO_TEXT_2026.IsEnabled(this.SettingsManager)) @if (PreviewFeatures.PRE_SPEECH_TO_TEXT_2026.IsEnabled(this.SettingsManager))
{ {
<ExpansionPanel HeaderIcon="@Icons.Material.Filled.VoiceChat" HeaderText="@T("Configure Transcription Providers")"> <ExpansionPanel HeaderIcon="@Icons.Material.Filled.VoiceChat" HeaderText="@T("Configure Transcription Providers")">
<PreviewPrototype ApplyInnerScrollingFix="true"/> <PreviewBeta ApplyInnerScrollingFix="true"/>
<MudText Typo="Typo.h4" Class="mb-3"> <MudText Typo="Typo.h4" Class="mb-3">
@T("Configured Transcription Providers") @T("Configured Transcription Providers")
</MudText> </MudText>
@ -70,4 +70,4 @@
@T("Add transcription provider") @T("Add transcription provider")
</MudButton> </MudButton>
</ExpansionPanel> </ExpansionPanel>
} }

View File

@ -11,6 +11,8 @@ public static class PreviewVisibilityExtensions
if (visibility >= PreviewVisibility.BETA) if (visibility >= PreviewVisibility.BETA)
{ {
features.Add(PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025);
features.Add(PreviewFeatures.PRE_SPEECH_TO_TEXT_2026);
} }
if (visibility >= PreviewVisibility.ALPHA) if (visibility >= PreviewVisibility.ALPHA)
@ -20,8 +22,6 @@ public static class PreviewVisibilityExtensions
if (visibility >= PreviewVisibility.PROTOTYPE) if (visibility >= PreviewVisibility.PROTOTYPE)
{ {
features.Add(PreviewFeatures.PRE_RAG_2024); features.Add(PreviewFeatures.PRE_RAG_2024);
features.Add(PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025);
features.Add(PreviewFeatures.PRE_SPEECH_TO_TEXT_2026);
} }
if (visibility >= PreviewVisibility.EXPERIMENTAL) if (visibility >= PreviewVisibility.EXPERIMENTAL)

View File

@ -5,4 +5,5 @@
- Added the policy export functionality to the Document Analysis Assistant (in preview). You can now export policies as Lua code for a configuration plugin to distribute the policy across your organization. - Added the policy export functionality to the Document Analysis Assistant (in preview). You can now export policies as Lua code for a configuration plugin to distribute the policy across your organization.
- Improved the error checking & logging behavior when the installed `PDFium` version did not meet the minimum required version. - Improved the error checking & logging behavior when the installed `PDFium` version did not meet the minimum required version.
- Improved the logging behavior when parsing profile tables from configuration plugins. - Improved the logging behavior when parsing profile tables from configuration plugins.
- Fixed a bug where the global minimum confidence level was not being applied to the assistants. - Fixed a bug where the global minimum confidence level was not being applied to the assistants.
- Upgraded the Document Analysis Assistant and the voice recording with transcription feature (both in preview) from the prototype to the beta state. Both features are now completely implemented and are undergoing a deeper testing phase in preparation for release.