Formatting

This commit is contained in:
Thorsten Sommer 2025-05-24 18:12:14 +02:00
parent fc103ff346
commit 221519a0e3
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 3 additions and 2 deletions

View File

@ -120,6 +120,7 @@ public sealed record ChatThread
}
}
}
logger.LogInformation(logMessage);
//

View File

@ -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<ChatTemplateDialog>(T("Edit Chat Template"), dialogParameters, DialogOptions.FULLSCREEN);