diff --git a/app/MindWork AI Studio/Chat/ChatThread.cs b/app/MindWork AI Studio/Chat/ChatThread.cs index 406ff3ba..8f506f61 100644 --- a/app/MindWork AI Studio/Chat/ChatThread.cs +++ b/app/MindWork AI Studio/Chat/ChatThread.cs @@ -120,6 +120,7 @@ public sealed record ChatThread } } } + logger.LogInformation(logMessage); // diff --git a/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs b/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs index ba494cb8..30abfe54 100644 --- a/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs +++ b/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs @@ -37,8 +37,8 @@ public partial class SettingsPanelChatTemplates : SettingsPanelBase { x => x.DataName, chatTemplate.Name }, { x => x.DataSystemPrompt, chatTemplate.SystemPrompt }, { x => x.IsEditing, true }, - {x => x.ExampleConversation, chatTemplate.ExampleConversation}, - {x => x.AllowProfileUsage, chatTemplate.AllowProfileUsage}, + { x => x.ExampleConversation, chatTemplate.ExampleConversation }, + { x => x.AllowProfileUsage, chatTemplate.AllowProfileUsage }, }; var dialogReference = await this.DialogService.ShowAsync(T("Edit Chat Template"), dialogParameters, DialogOptions.FULLSCREEN);