mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-13 03:21:37 +00:00
Fixed workspace settings access when workspaces are disabled
This commit is contained in:
parent
0bb5b81bd0
commit
82a3900c3e
@ -16,9 +16,17 @@
|
||||
}
|
||||
</MudText>
|
||||
|
||||
<MudTooltip Text="@T("Show the chat options")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
|
||||
<MudIconButton Variant="Variant.Text" Icon="@Icons.Material.Filled.Settings" Color="Color.Default" OnClick="@this.OpenChatSettingsDialog"/>
|
||||
</MudTooltip>
|
||||
<MudToolBar WrapContent="false" Gutters="false">
|
||||
@if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.DISABLE_WORKSPACES)
|
||||
{
|
||||
<MudTooltip Text="@T("Configure your workspaces")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
|
||||
<MudIconButton Icon="@Icons.Material.Filled.Settings" OnClick="@(async () => await this.OpenWorkspacesSettingsDialog())"/>
|
||||
</MudTooltip>
|
||||
}
|
||||
<MudTooltip Text="@T("Show the chat options")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
|
||||
<MudIconButton Icon="@Icons.Material.Filled.Settings" Color="Color.Default" OnClick="@this.OpenChatSettingsDialog"/>
|
||||
</MudTooltip>
|
||||
</MudToolBar>
|
||||
</MudStack>
|
||||
|
||||
<ProviderSelection @bind-ProviderSettings="@this.providerSettings"/>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
- Added support for newer Mistral models (Mistral 3, Voxtral, and Magistral).
|
||||
- Added support for the new OpenAI model GPT 5.2.
|
||||
- Added support for OpenRouter as LLM and embedding provider.
|
||||
- Added support for multimodal processing (documents and images for now), when the selected LLM supports it.
|
||||
- Added support for multimodal processing (documents and images, for now) when the selected LLM supports it.
|
||||
- Added a description field to local data sources (preview feature) so that the data selection agent has more information about which data each local source contains when selecting data sources.
|
||||
- Added the ability to use file attachments (including images) in chat. This is the initial implementation of this feature. We will continue to develop this feature and refine it further based on user feedback. Many thanks to Sabrina `Sabrina-devops` for this wonderful contribution.
|
||||
- Improved the document analysis assistant (in preview) by adding descriptions to the different sections.
|
||||
@ -21,4 +21,5 @@
|
||||
- Fixed a rare bug in the Microsoft Word export for huge documents.
|
||||
- Fixed a bug in the chat options that occurred when selecting default data sources. Under certain conditions, selecting data sources caused an error that required restarting the app. This preview-only feature (RAG preview) had not been released yet.
|
||||
- Fixed a bug in the chat template selection where the "No chat template" entry could not be localized, causing English text to appear in languages such as German. This behavior has now been fixed.
|
||||
- Fixed a workspace-related bug where disabling workspaces completely prevented access to the workspace settings. Workspace settings now appear next to chat settings in this case. Thanks to Paul `PaulKoudelka` for reporting.
|
||||
- Upgraded dependencies such as Rust, MudBlazor, and others.
|
||||
Loading…
Reference in New Issue
Block a user