diff --git a/app/MindWork AI Studio/Components/ChatComponent.razor.cs b/app/MindWork AI Studio/Components/ChatComponent.razor.cs index 35d71f5b..55c27d40 100644 --- a/app/MindWork AI Studio/Components/ChatComponent.razor.cs +++ b/app/MindWork AI Studio/Components/ChatComponent.razor.cs @@ -149,13 +149,13 @@ public partial class ChatComponent : MSGComponentBase, IAsyncDisposable if(this.ChatThread is not null) { + await this.ChatThreadChanged.InvokeAsync(this.ChatThread); this.currentWorkspaceName = await WorkspaceBehaviour.LoadWorkspaceName(this.ChatThread.WorkspaceId); this.WorkspaceName(this.currentWorkspaceName); await this.SelectProviderWhenLoadingChat(); } this.StateHasChanged(); - await this.ChatThreadChanged.InvokeAsync(this.ChatThread); } if(this.mustScrollToBottomAfterRender) diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.9.25.md b/app/MindWork AI Studio/wwwroot/changelog/v0.9.25.md index 189d6131..e162a127 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v0.9.25.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v0.9.25.md @@ -2,4 +2,5 @@ - Added xAI as a new provider. xAI provides their Grok models for generating content. - Improved the stop generation button behavior to ensure that the AI stops generating content immediately (which will save compute time, energy and financial resources). - Fixed the chat scrolling behavior after toggling the workspaces. +- Fixed an issue when loading the today's bias chat, triggered by the bias assistant. - Restructured the streaming network code to be centralized out of the individual providers. This will allow for easier maintenance and updates in the future. \ No newline at end of file