mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 05:21:36 +00:00
Upgraded voice recording & document analysis to the beta state (#651)
This commit is contained in:
parent
f1fa8fd8a0
commit
8f9cd40d06
@ -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">
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -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)
|
||||||
|
|||||||
@ -6,3 +6,4 @@
|
|||||||
- 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.
|
||||||
Loading…
Reference in New Issue
Block a user