mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-21 20:32:15 +00:00
Released the transcription feature (#766)
This commit is contained in:
parent
9419c4ed44
commit
6c29cd65a7
@ -5,7 +5,6 @@
|
|||||||
@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")">
|
||||||
<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>
|
||||||
|
|||||||
@ -173,8 +173,8 @@ CONFIG["SETTINGS"] = {}
|
|||||||
|
|
||||||
-- Configure the enabled preview features:
|
-- Configure the enabled preview features:
|
||||||
-- Allowed values are can be found in https://github.com/MindWorkAI/AI-Studio/app/MindWork%20AI%20Studio/Settings/DataModel/PreviewFeatures.cs
|
-- Allowed values are can be found in https://github.com/MindWorkAI/AI-Studio/app/MindWork%20AI%20Studio/Settings/DataModel/PreviewFeatures.cs
|
||||||
-- Examples are PRE_WRITER_MODE_2024, PRE_RAG_2024, PRE_SPEECH_TO_TEXT_2026.
|
-- Examples are PRE_WRITER_MODE_2024 and PRE_RAG_2024.
|
||||||
-- CONFIG["SETTINGS"]["DataApp.EnabledPreviewFeatures"] = { "PRE_RAG_2024", "PRE_SPEECH_TO_TEXT_2026" }
|
-- CONFIG["SETTINGS"]["DataApp.EnabledPreviewFeatures"] = { "PRE_RAG_2024" }
|
||||||
|
|
||||||
-- Configure the preselected provider.
|
-- Configure the preselected provider.
|
||||||
-- It must be one of the provider IDs defined in CONFIG["LLM_PROVIDERS"].
|
-- It must be one of the provider IDs defined in CONFIG["LLM_PROVIDERS"].
|
||||||
|
|||||||
@ -14,7 +14,7 @@ public static class PreviewFeaturesExtensions
|
|||||||
PreviewFeatures.PRE_PLUGINS_2025 => TB("Plugins: Preview of our plugin system where you can extend the functionality of the app"),
|
PreviewFeatures.PRE_PLUGINS_2025 => TB("Plugins: Preview of our plugin system where you can extend the functionality of the app"),
|
||||||
PreviewFeatures.PRE_READ_PDF_2025 => TB("Read PDF: Preview of our PDF reading system where you can read and extract text from PDF files"),
|
PreviewFeatures.PRE_READ_PDF_2025 => TB("Read PDF: Preview of our PDF reading system where you can read and extract text from PDF files"),
|
||||||
PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025 => TB("Document Analysis: Preview of our document analysis system where you can analyze and extract information from documents"),
|
PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025 => TB("Document Analysis: Preview of our document analysis system where you can analyze and extract information from documents"),
|
||||||
PreviewFeatures.PRE_SPEECH_TO_TEXT_2026 => TB("Transcription: Preview of our speech to text system where you can transcribe recordings and audio files into text"),
|
PreviewFeatures.PRE_SPEECH_TO_TEXT_2026 => TB("Transcription: Convert recordings and audio files into text"),
|
||||||
|
|
||||||
_ => TB("Unknown preview feature")
|
_ => TB("Unknown preview feature")
|
||||||
};
|
};
|
||||||
@ -33,6 +33,7 @@ public static class PreviewFeaturesExtensions
|
|||||||
PreviewFeatures.PRE_READ_PDF_2025 => true,
|
PreviewFeatures.PRE_READ_PDF_2025 => true,
|
||||||
PreviewFeatures.PRE_PLUGINS_2025 => true,
|
PreviewFeatures.PRE_PLUGINS_2025 => true,
|
||||||
PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025 => true,
|
PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025 => true,
|
||||||
|
PreviewFeatures.PRE_SPEECH_TO_TEXT_2026 => true,
|
||||||
|
|
||||||
_ => false
|
_ => false
|
||||||
};
|
};
|
||||||
|
|||||||
@ -12,7 +12,6 @@ public static class PreviewVisibilityExtensions
|
|||||||
if (visibility >= PreviewVisibility.BETA)
|
if (visibility >= PreviewVisibility.BETA)
|
||||||
{
|
{
|
||||||
features.Add(PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025);
|
features.Add(PreviewFeatures.PRE_DOCUMENT_ANALYSIS_2025);
|
||||||
features.Add(PreviewFeatures.PRE_SPEECH_TO_TEXT_2026);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (visibility >= PreviewVisibility.ALPHA)
|
if (visibility >= PreviewVisibility.ALPHA)
|
||||||
|
|||||||
@ -185,9 +185,7 @@ public sealed class GlobalShortcutService : BackgroundService, IMessageBusReceiv
|
|||||||
return new(shortcut, isEnabled, false);
|
return new(shortcut, isEnabled, false);
|
||||||
|
|
||||||
var fallbackShortcut = settingsSnapshot.App.ShortcutVoiceRecording;
|
var fallbackShortcut = settingsSnapshot.App.ShortcutVoiceRecording;
|
||||||
var fallbackEnabled =
|
var fallbackEnabled = !string.IsNullOrWhiteSpace(settingsSnapshot.App.UseTranscriptionProvider);
|
||||||
settingsSnapshot.App.EnabledPreviewFeatures.Contains(PreviewFeatures.PRE_SPEECH_TO_TEXT_2026) &&
|
|
||||||
!string.IsNullOrWhiteSpace(settingsSnapshot.App.UseTranscriptionProvider);
|
|
||||||
|
|
||||||
if (!fallbackEnabled || string.IsNullOrWhiteSpace(fallbackShortcut))
|
if (!fallbackEnabled || string.IsNullOrWhiteSpace(fallbackShortcut))
|
||||||
return new(shortcut, isEnabled, false);
|
return new(shortcut, isEnabled, false);
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
# v26.5.5, build 240 (2026-05-xx xx:xx UTC)
|
# v26.5.5, build 240 (2026-05-xx xx:xx UTC)
|
||||||
|
- Released the voice recording and transcription for all users. You no longer need to enable a preview feature to configure transcription providers, select a transcription provider, or use dictation.
|
||||||
- Improved the app's security foundation with major modernization of the native runtime and its internal communication layer. This work is mostly invisible during everyday use, but it replaces older components that no longer received the security updates we require. We also continued updating security-sensitive dependencies so AI Studio stays on a healthier, better maintained base.
|
- Improved the app's security foundation with major modernization of the native runtime and its internal communication layer. This work is mostly invisible during everyday use, but it replaces older components that no longer received the security updates we require. We also continued updating security-sensitive dependencies so AI Studio stays on a healthier, better maintained base.
|
||||||
- Improved the Pandoc management and detection process to make it more reliable.
|
- Improved the Pandoc management and detection process to make it more reliable.
|
||||||
- Fixed the Pandoc installation, which could fail and prevent AI Studio from installing its local Pandoc dependency.
|
- Fixed the Pandoc installation, which could fail and prevent AI Studio from installing its local Pandoc dependency.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user